:root {
  --color-primary: #1e292f;
  --color-secondary: #f6bb36;
  --color-light: #ffffff;
}

* {
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*:hover {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-primary);
  color: var(--color-light);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
}

.navbar {
  background-color: #fff;
}

/* Logo Flip Effect */
.logo-flip-container {
  perspective: 1000px;
  display: inline-block;
  padding: 0;
}

.logo-flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
  width: auto; /* Allow natural width */
  height: 60px; /* Match image height */
  /* Using grid to stack images without absolute positioning */
  display: grid;
  grid-template-areas: "stack";
}

.logo-flip-container:hover .logo-flipper {
  transform: rotateY(180deg);
}

.logo-front, .logo-back {
  backface-visibility: hidden;
  grid-area: stack;
  /* Ensure images behave well in grid */
  width: auto;
  height: 60px;
}

.logo-front {
  z-index: 2;
  transform: rotateY(0deg);
  margin-left: 22px;
}

.logo-back {
  transform: rotateY(180deg);
  bottom: 0;
  height: 18px;
  margin-top: 20px;
}

.nav-link {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  color: var(--color-primary);
  transform: translateX(0%);
  margin: 0 8px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  background-color: var(--color-secondary);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateX(-50%);
}

.nav-link:hover {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--color-secondary) !important;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active, .nav-link:focus {
  color: var(--color-secondary) !important;
}

.nav-link.active::after {
  width: 100%;
}

/* =====================
   Dropdown / Submenu
   ===================== */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 0.5rem 0;
  min-width: 200px;
  margin-top: 0.25rem;
  animation: fadeInDown 0.2s ease both;
}

.dropdown-item {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  padding: 0.55rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(var(--color-secondary-rgb, 246, 187, 54), 0.12);
  color: var(--color-secondary);
}

.dropdown-item.active {
  background-color: transparent;
  color: var(--color-secondary);
}

/* Hover open on desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .navbar .dropdown > .dropdown-toggle:active {
    pointer-events: none;
  }

  /* Nested submenu */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.5rem;
    margin-left: 0.125rem;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Mobile: submenu indent */
@media (max-width: 991.98px) {
  .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
    padding-left: 1rem;
    background: transparent;
  }

  .dropdown-item {
    color: var(--color-primary);
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hero-curve-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background-color: #ffffff;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  z-index: 4;
}

.scroll-indicator-wrapper {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.scroll-indicator-wrapper:hover {
  opacity: 1;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% {
    top: 6px;
    opacity: 1;
    height: 8px;
  }
  100% {
    top: 24px;
    opacity: 0;
    height: 4px;
  }
}

.hero-badge {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(246, 187, 54, 0.5);
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.96);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: var(--color-secondary);
  box-shadow: 0 0 0 6px rgba(246, 187, 54, 0.25);
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.hero-title-highlight {
  color: var(--color-secondary);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-title,
.hero-subtitle {
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.btn-primary-custom {
  transform: translateY(0px);
  background-color: var(--color-light);
  color: var(--color-primary);
  border-radius: 999px;
  padding: 0.75rem 1.7rem;
  font-weight: 600;
  border: 1px solid var(--color-secondary);
  box-shadow: 0 14px 28px rgba(246, 187, 54, 0.25);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(246, 187, 54, 0.45);
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: rgba(248, 250, 252, 0.9);
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  background-color: rgba(15, 23, 42, 0.5);
}

.btn-ghost:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

/* Service Section */
.service-section {
  background-color: #fff;
}

.service-bg-shape {
  position: absolute;
  top: 50%;
  left: 180px;
  transform: translateY(-50%);
  width: 100%;
  height: 120%;
  background-color: var(--color-primary);
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  z-index: 0;
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-nav-btns .btn {
  border-color: #dee2e6;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.service-nav-btns .btn:hover {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.service-img-slider {
  padding: 40px 0 60px 0; /* Space for shadow/hover */
}

.service-img-slider .swiper-slide {
  height: auto;
  transform: translateY(-2px);
  margin: 16px 0;
}  

.hero-metadata {
  border-radius: 1rem;
  background-color: rgba(15, 23, 30, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.hero-metadata .stat-label {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.9);
}

.hero-metadata .stat-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.floating-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: radial-gradient(circle at top left, rgba(246, 187, 54, 0.15), transparent 55%),
              rgba(15, 23, 42, 0.95);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.78);
  position: relative;
  overflow: hidden;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(246, 187, 54, 0.2), transparent 55%);
  opacity: 0;
  pointer-events: none;
}

.floating-card:hover {
  transform: translateY(-4px) translateZ(0);
}

.floating-card:hover::before {
  opacity: 1;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  transform: scale(1.05);
  opacity: 0.5;
}

.hero-pill {
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.96);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.web-showcase-section {
  background: radial-gradient(circle at top left, #020617, #020617 55%, #020617);
  color: #e5e7eb;
}

.web-showcase-slider {
  padding-bottom: 0.5rem;
}

.web-showcase-slider .swiper-slide {
  width: auto;
}

.web-showcase-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background-color: #020617;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.85);
}

.web-showcase-image {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background-color: #111;
}

.web-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: object-position 3s linear, transform 0.35s ease;
  transform: scale(1.02);
}

.web-showcase-card:hover .web-showcase-image img {
  object-position: center bottom;
}

.web-showcase-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1.2rem 1.15rem 1.2rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.web-showcase-card:hover .web-showcase-overlay {
  transform: translateY(0%);
}

.web-showcase-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.web-showcase-nav .web-showcase-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: rgba(15, 23, 42, 0.85);
  color: rgba(226, 232, 240, 0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.web-showcase-nav .web-showcase-btn:hover {
  border-color: var(--color-secondary);
  background-color: rgba(246, 187, 54, 0.1);
  color: var(--color-secondary);
}

@media (max-width: 767.98px) {
  .web-showcase-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.pricing-section {
  background: radial-gradient(circle at top left, #020617, #020617 55%, #020617);
  color: #e5e7eb;
}

.pricing-card {
  border-radius: 26px;
  background-color: #ffffff;
  color: #0f172a;
  padding: 2.3rem 2.1rem 2.1rem 2.1rem;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: linear-gradient(135deg, #1e292f, #111827);
  color: #f9fafb;
  border-color: rgba(246, 187, 54, 0.6);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.9);
}

.pricing-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 1.8rem;
}

.pricing-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: rgba(55, 65, 81, 0.9);
  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-subtitle {
  color: rgba(209, 213, 219, 0.95);
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pricing-price-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-price-label {
  font-size: 0.85rem;
  color: rgba(75, 85, 99, 0.95);
}

.pricing-card-featured .pricing-price-label {
  color: rgba(209, 213, 219, 0.9);
}

.pricing-price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.pricing-card-featured .pricing-price-value {
  color: var(--color-secondary);
}

.pricing-price-unit {
  font-size: 0.9rem;
  color: rgba(75, 85, 99, 0.95);
}

.pricing-card-featured .pricing-price-unit {
  color: rgba(209, 213, 219, 0.9);
}

.pricing-price-original {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.95);
}

.pricing-price-original span {
  text-decoration: line-through;
  color: rgba(107, 114, 128, 0.95);
}

.pricing-features li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9rem;
  color: rgba(55, 65, 81, 0.98);
  margin-bottom: 0.45rem;
}

.pricing-card-featured .pricing-features li {
  color: rgba(229, 231, 235, 0.98);
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(246, 187, 54, 0.18);
  background-color: #ffffff;
}

.pricing-card-featured .pricing-features li::before {
  background-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(246, 187, 54, 0.35);
}

.btn-pricing {
  margin-top: auto;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  background-color: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.7rem 1.4rem;
}

.btn-pricing:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn-pricing-featured {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 18px 45px rgba(246, 187, 54, 0.55);
}

.btn-pricing-featured:hover {
  background-color: #fbbf24;
  border-color: #fbbf24;
}

@media (max-width: 991.98px) {
  .pricing-card {
    padding: 2rem 1.7rem 2rem 1.7rem;
  }
}

footer {
  background-color: #111827;
  color: rgba(209, 213, 219, 0.9);
}

.footer-link {
  color: rgba(156, 163, 175, 0.95);
  font-size: 0.9rem;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  color: rgba(209, 213, 219, 0.95);
}

.social-link:hover {
  border-color: var(--color-secondary);
  background-color: rgba(246, 187, 54, 0.1);
  color: var(--color-secondary);
  transform: translateY(-1px);
}

.social-link--text {
  width: auto;
  height: auto;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  justify-content: flex-start;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 0.95);
  line-height: 1.6;
}

.footer-info-list li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--color-secondary);
}

.footer-divider {
  border-color: rgba(55, 65, 81, 0.9);
}

.domain-check-section {
  background: radial-gradient(circle at top left, #efbc44, #f6bb36);
}

.domain-check-text p,
.domain-check-text h3 {
  text-align: left;
}

.domain-check-text p.text-dark-50 {
  color: #6b7280;
}

.domain-check-form {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.domain-check-input-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
}

.domain-input-prefix {
  border-radius: 999px 0 0 999px;
  border-right: 0;
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 0.9rem;
  padding-inline: 0.9rem;
}

.domain-input {
  border-radius: 0 999px 999px 0;
  border-left: 0;
  padding-inline: 1rem;
}

.domain-input:focus {
  box-shadow: none;
  border-color: var(--color-secondary);
}

.btn-domain-check {
  border-radius: 999px;
  border: 1px solid var(--color-secondary);
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  white-space: nowrap;
}

.btn-domain-check:hover {
  background-color: #fbbf24;
  border-color: #fbbf24;
}

.domain-check-result {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  background-color: #f9fafb;
  color: #374151;
}

.domain-status-available {
  background-color: #ecfdf3;
  color: #166534;
}

.domain-status-available span {
  font-weight: 600;
}

.domain-status-taken {
  background-color: #fef2f2;
  color: #b91c1c;
}

.domain-status-taken span {
  font-weight: 600;
}

.domain-status-error {
  background-color: #eff6ff;
  color: #1d4ed8;
}

.clients-section {
  background-color: #ffffff;
}

.clients-inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-box {
  width: 100%;
  max-width: 110px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: radial-gradient(circle at top left, #f9fafb, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) saturate(0.8);
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.client-logo-card:hover .client-logo-box {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  border-color: #d1d5db;
  background: radial-gradient(circle at top left, #ffffff, #e5e7eb);
}

.client-logo-card:hover .client-logo-box img {
  filter: grayscale(0) saturate(1);
  opacity: 1;
  transform: scale(1.02);
}

@media (max-width: 991.98px) {
  .domain-check-input-group {
    align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-text-slider h4 {
  color: #000;
}

.contact-section {
  background: radial-gradient(circle at top left, #0f172a, #022c3a 40%, #020617 100%);
  color: #e5e7eb;
}

.contact-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
  z-index: 0;
}

.contact-stars-back {
  animation: contactStarsDrift 40s linear infinite;
}

.contact-stars-front {
  opacity: 0.9;
  animation: contactStarsDrift 65s linear infinite reverse;
}

@keyframes contactStarsDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-80px, -40px, 0);
  }
}

.contact-star {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 250, 252, 0.95) 0, rgba(248, 250, 252, 0.1) 60%, transparent 70%);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.45);
  transform: scale(0.8);
  animation-name: contactStarTwinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes contactStarTwinkle {
  0% {
    transform: scale(0.7);
    filter: blur(0px);
  }
  50% {
    transform: scale(1.35);
    filter: blur(0.5px);
  }
  100% {
    transform: scale(0.9);
    filter: blur(0px);
  }
}

.contact-card {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.14), transparent 60%),
              rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.85);
  padding: 2.75rem 2.5rem;
}

.contact-info {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2.25rem;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.65);
  color: #e5e7eb;
}

.text-contact-accent {
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
}

.text-contact-muted {
  color: rgba(148, 163, 184, 0.9);
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

.contact-input {
  background-color: rgba(15, 23, 42, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.95);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.contact-input:focus {
  background-color: rgba(15, 23, 42, 0.98);
  border-color: var(--color-secondary);
  color: #f9fafb;
  box-shadow: 0 0 0 1px rgba(246, 187, 54, 0.4);
}

.contact-input::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.contact-input[type="textarea"],
.contact-card textarea.contact-input {
  border-radius: 1.25rem;
}

.contact-check {
  border-radius: 6px;
  border-color: rgba(75, 85, 99, 0.9);
  background-color: rgba(15, 23, 42, 0.9);
}

.contact-check:checked {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-contact-submit {
  border-radius: 999px;
  border: 1px solid var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.75rem 1.9rem;
  box-shadow: 0 18px 40px rgba(246, 187, 54, 0.45);
}

.btn-contact-submit:hover {
  background: #fbbf24;
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(246, 187, 54, 0.6);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.95);
  color: rgba(249, 250, 251, 0.92);
}

@media (max-width: 991.98px) {
  .contact-card,
  .contact-info {
    padding: 2.1rem 1.75rem;
  }

  .contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
