/* ==========================================================================
   TOBISOFT ELITE COMPONENTS & PAGE MODULES
   ========================================================================== */

/* ==========================================================================
   HERO COMPONENT
   ========================================================================== */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-heading {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Stats Bar */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 40%, #ff5c72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Visual Showcase */
.hero-visual-container {
  position: relative;
  z-index: 2;
}

.hero-card-stack {
  position: relative;
  perspective: 1000px;
}

.hero-main-card {
  background: linear-gradient(145deg, rgba(28, 34, 51, 0.9) 0%, rgba(13, 15, 23, 0.95) 100%);
  border: 1px solid rgba(230, 25, 42, 0.35);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-ruby-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.window-dots {
  display: flex;
  gap: 0.45rem;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

.tech-status-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-light);
  background: rgba(230, 25, 42, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(230, 25, 42, 0.3);
}

.hero-image-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-subtle);
  background: #000;
}

.hero-image-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-image-slider img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-feature-tag {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
}

/* Floating Glass Badges */
.floating-badge {
  position: absolute;
  background: rgba(13, 15, 23, 0.85);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
}

.floating-badge.badge-top-right {
  top: -20px;
  right: -20px;
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
}

.floating-badge.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  border-color: rgba(230, 25, 42, 0.35);
  box-shadow: 0 10px 30px rgba(230, 25, 42, 0.2);
}

.floating-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.floating-badge.badge-top-right .floating-badge-icon {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
}
.floating-badge.badge-bottom-left .floating-badge-icon {
  background: rgba(230, 25, 42, 0.15);
  color: var(--brand-light);
}

.floating-badge-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
}
.floating-badge-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .floating-badge {
    position: static;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   CLIENT MARQUEE & TICKER
   ========================================================================== */
.marquee-container {
  padding: 3rem 0;
  border-block: 1px solid var(--border-subtle);
  background: rgba(13, 15, 23, 0.4);
  overflow: hidden;
  position: relative;
}

.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary) 0%, transparent 100%);
}

.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  gap: 3rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.75;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.marquee-item:hover {
  opacity: 1;
  color: var(--text-light);
}

.marquee-item .item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
}

/* ==========================================================================
   SERVICE CARDS GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.service-card.highlight {
  border-color: rgba(230, 25, 42, 0.4);
  background: linear-gradient(145deg, rgba(28, 34, 51, 0.7) 0%, rgba(13, 15, 23, 0.85) 100%);
  box-shadow: 0 10px 40px rgba(230, 25, 42, 0.15);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 25, 42, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(230, 25, 42, 0.2);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(230, 25, 42, 0.12);
  border: 1px solid rgba(230, 25, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--brand-light);
  box-shadow: 0 0 20px rgba(230, 25, 42, 0.2);
}

.service-icon-box.cyan {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.service-icon-box.purple {
  background: rgba(138, 43, 226, 0.12);
  border-color: rgba(138, 43, 226, 0.3);
  color: #c084fc;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.service-icon-box.emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.service-icon-box.amber {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.service-icon-box.blue {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.service-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.service-badge.featured {
  background: rgba(230, 25, 42, 0.2);
  border-color: rgba(230, 25, 42, 0.5);
  color: var(--brand-light);
}

.service-badge.emerald {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.service-badge.amber {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.service-badge.blue {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.service-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-feature-item svg {
  color: var(--brand-light);
  flex-shrink: 0;
}

.service-card-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-light);
  transition: all var(--transition-fast);
}

.service-action-link:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.service-sub-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.service-sub-link:hover {
  color: var(--text-light);
}

/* ==========================================================================
   REFERENCES DATABASE & SEARCH TOOLBAR
   ========================================================================== */
.references-control-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
}

.ref-search-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.ref-search-input-wrap {
  flex: 1;
  position: relative;
  min-width: 280px;
}

.ref-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.ref-search-input {
  width: 100%;
  background: rgba(7, 8, 12, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.9rem 1.25rem 0.9rem 3.1rem;
  color: var(--text-light);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
}

.ref-search-input:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 20px rgba(230, 25, 42, 0.25);
  background: rgba(7, 8, 12, 0.95);
}

.ref-filter-chips {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.ref-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ref-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.ref-chip.active {
  background: var(--brand-primary);
  border-color: var(--brand-light);
  color: var(--text-light);
  box-shadow: 0 0 18px rgba(230, 25, 42, 0.4);
}

/* Reference Stats Strip */
.ref-stats-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.ref-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
}

.ref-stat-count {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-light);
}

.ref-stat-meta {
  display: flex;
  flex-direction: column;
}

.ref-stat-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* References Card Grid */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.reference-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.reference-card-item:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 25, 42, 0.4);
  box-shadow: var(--shadow-md), 0 0 25px rgba(230, 25, 42, 0.12);
  background: var(--bg-card-hover);
}

.ref-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.ref-region-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.ref-city-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ref-company-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.ref-company-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.ref-company-name:hover {
  background: rgba(230, 25, 42, 0.1);
  border-color: rgba(230, 25, 42, 0.25);
  color: var(--text-light);
}

.ref-company-name .ref-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   PROJECT SCOPE & COST ESTIMATOR
   ========================================================================== */
.estimator-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.estimator-builder {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}

.estimator-step {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.estimator-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--brand-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.step-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.estimator-option-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  user-select: none;
}

.estimator-option-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.estimator-option-card.selected {
  background: rgba(230, 25, 42, 0.15);
  border-color: var(--brand-light);
  box-shadow: 0 0 20px rgba(230, 25, 42, 0.25);
}

.opt-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
}

.opt-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Estimator Live Summary */
.estimator-summary-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(145deg, rgba(28, 34, 51, 0.9) 0%, rgba(13, 15, 23, 0.95) 100%);
  border: 1px solid rgba(230, 25, 42, 0.4);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-ruby);
  backdrop-filter: blur(20px);
}

.summary-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-metric {
  margin-bottom: 1.5rem;
}

.summary-metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.summary-metric-val {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
}

.summary-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.summary-feature-pill {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .estimator-layout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT FORM & QUICK REACH
   ========================================================================== */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.contact-channel-card:hover {
  transform: translateX(6px);
  border-color: rgba(230, 25, 42, 0.4);
  background: var(--bg-card-hover);
}

.channel-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(230, 25, 42, 0.12);
  border: 1px solid rgba(230, 25, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand-light);
  flex-shrink: 0;
}

.channel-icon-wrap.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.channel-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.channel-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
}

.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(7, 8, 12, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.25rem;
  color: var(--text-light);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
}

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

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 20px rgba(230, 25, 42, 0.25);
  background: rgba(7, 8, 12, 0.95);
}

.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  display: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

@media (max-width: 992px) {
  .contact-grid-layout {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
}
