/*--------------------------------------------------------------
# IQ Fence Configurator Styles
--------------------------------------------------------------*/

/* Configurator Wrapper */
.configurator-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Progress Bar */
.configurator-progress {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.progress-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .progress-step-number,
.progress-step.completed .progress-step-number {
    background-color: var(--iq-accent-teal);
    color: white;
}

.progress-step.completed .progress-step-number::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
}

.progress-step-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center;
    max-width: 80px;
}

.progress-step.active .progress-step-label {
    color: var(--iq-primary-navy);
    font-weight: 600;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.progress-bar {
    background-color: var(--iq-accent-teal);
    transition: width 0.4s ease;
}

/* Step Content */
.configurator-content {
    min-height: 500px;
}

.config-step {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.step-header h2 {
    color: var(--iq-primary-navy);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #6c757d;
    font-size: 1.125rem;
    margin: 0;
}

.step-body {
    max-width: 900px;
    margin: 0 auto;
}

/* Choice Grid (Step 1) */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.choice-card {
    position: relative;
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice-card:hover {
    border-color: var(--iq-accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 128, 156, 0.15);
}

.choice-card.selected {
    border-color: var(--iq-accent-teal);
    background: linear-gradient(135deg, rgba(0, 128, 156, 0.05) 0%, rgba(0, 128, 156, 0.02) 100%);
}

.choice-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--iq-accent-teal) 0%, #006d85 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.choice-icon {
    font-size: 3rem;
    color: var(--iq-accent-teal);
    margin-bottom: 1rem;
}

.choice-card h4 {
    color: var(--iq-primary-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.choice-card > p {
    color: var(--iq-primary-navy);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.choice-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0 !important;
}

.choice-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--iq-accent-teal);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choice-card.selected .choice-check {
    opacity: 1;
}

/* Product Grid (Step 2) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    position: relative;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--iq-accent-teal);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 128, 156, 0.15);
}

.product-card.selected {
    border-color: var(--iq-accent-teal);
    border-width: 3px;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: var(--iq-primary-navy);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    color: var(--iq-accent-teal);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-link {
    color: var(--iq-primary-navy);
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--iq-accent-teal);
}

.product-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--iq-accent-teal);
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card.selected .product-check {
    opacity: 1;
}

/* Help Text */
.help-text {
    background: #f8f9fa;
    border-left: 4px solid var(--iq-accent-teal);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-text i {
    color: var(--iq-accent-teal);
    font-size: 1.25rem;
}

.help-text a {
    color: var(--iq-accent-teal);
    text-decoration: none;
    font-weight: 600;
}

.help-text a:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.configurator-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.nav-spacer {
    flex: 1;
}

.configurator-nav .btn {
    min-width: 150px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.configurator-nav .btn-primary {
    background-color: var(--iq-accent-teal);
    border-color: var(--iq-accent-teal);
}

.configurator-nav .btn-primary:hover:not(:disabled) {
    background-color: #006d85;
    border-color: #006d85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 156, 0.3);
}

.configurator-nav .btn-primary:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.configurator-nav .btn-outline-secondary:hover {
    background-color: var(--iq-primary-navy);
    border-color: var(--iq-primary-navy);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .configurator-wrapper {
        padding: 1.5rem;
    }

    .progress-steps {
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .progress-step {
        min-width: 60px;
    }

    .progress-step-label {
        font-size: 0.65rem;
        max-width: 60px;
    }

    .progress-step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .step-header h2 {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .choice-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .configurator-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .configurator-nav .btn {
        width: 100%;
    }

    #prevBtn {
        order: 2;
    }

    #nextBtn {
        order: 1;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 1rem;
    }

    .choice-card {
        padding: 1.5rem;
    }

    .choice-icon {
        font-size: 2.5rem;
    }
}

/* ==========================================
   Step 3: Model & Color Selection
   ========================================== */

/* Section Titles */
.section-title {
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e9ecef;
}

.section-title h4 {
  font-size: 1.25rem;
  color: var(--iq-primary-navy);
  margin: 0;
  font-weight: 600;
}

/* Model Grid */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.model-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.model-card:hover {
  border-color: var(--iq-accent-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 128, 156, 0.15);
}

.model-card.selected {
  border-color: var(--iq-accent-teal);
  background: linear-gradient(135deg, rgba(0, 128, 156, 0.05), rgba(42, 63, 74, 0.05));
}

.model-card .model-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.model-card .model-name {
  font-weight: 600;
  color: var(--iq-primary-navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.model-card .model-description {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0;
}

.model-card .model-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: var(--iq-accent-teal);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.model-card.selected .model-check {
  opacity: 1;
  transform: scale(1);
}

/* Color Selection */
.color-selection {
  margin-top: 2rem;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.color-swatch {
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-height: 100px;
}

.color-swatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.color-swatch.selected {
  border-color: var(--iq-accent-teal);
  box-shadow: 0 0 0 3px var(--iq-accent-teal);
  transform: translateY(-2px);
}

.color-swatch .color-name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.color-swatch .color-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.color-swatch.selected .color-check {
  opacity: 1;
  transform: scale(1);
}

/* Custom RAL Option */
.custom-ral-option {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.custom-ral-option .form-check-label {
  font-weight: 500;
  cursor: pointer;
}

.custom-ral-input input[type="text"] {
  text-transform: uppercase;
  font-weight: 600;
}

.custom-ral-input .alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================
   Step 4: Dimensions Form
   ========================================== */

.dimensions-form {
  max-width: 900px;
  margin: 0 auto;
}

.dimensions-form .form-label {
  font-weight: 600;
  color: var(--iq-primary-navy);
  margin-bottom: 0.5rem;
}

.dimensions-form .form-control,
.dimensions-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dimensions-form .form-control:focus,
.dimensions-form .form-select:focus {
  border-color: var(--iq-accent-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 156, 0.15);
}

.dimensions-form .form-control.is-invalid {
  border-color: #dc3545;
}

.dimensions-form .input-group-text {
  background: var(--iq-primary-navy);
  color: white;
  font-weight: 600;
  border: none;
  min-width: 60px;
  justify-content: center;
}

.dimensions-form .form-text {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.dimensions-form .form-text i {
  color: var(--iq-accent-teal);
}

/* Calculated Info */
.calculated-info {
  margin-top: 3rem;
}

.info-card {
  background: linear-gradient(135deg, rgba(42, 63, 74, 0.05), rgba(0, 128, 156, 0.05));
  border: 2px solid var(--iq-accent-teal);
  border-radius: 12px;
  padding: 2rem;
}

.info-card h5 {
  color: var(--iq-primary-navy);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h5 i {
  color: var(--iq-accent-teal);
}

.calc-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
}

.calc-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.calc-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--iq-accent-teal);
}

/* ==========================================
   Step 5: Foundation Options
   ========================================== */

.foundation-options {
  display: grid;
  gap: 2rem;
}

.foundation-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.foundation-card:hover {
  border-color: var(--iq-accent-teal);
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 128, 156, 0.15);
}

.foundation-card.selected {
  border-color: var(--iq-accent-teal);
  border-width: 3px;
  background: linear-gradient(135deg, rgba(0, 128, 156, 0.05), rgba(42, 63, 74, 0.05));
}

.foundation-icon {
  font-size: 3rem;
  color: var(--iq-primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 128, 156, 0.1), rgba(42, 63, 74, 0.1));
  border-radius: 12px;
  transition: all 0.3s ease;
}

.foundation-card:hover .foundation-icon {
  background: linear-gradient(135deg, var(--iq-accent-teal), var(--iq-primary-navy));
  color: white;
}

.foundation-card.selected .foundation-icon {
  background: linear-gradient(135deg, var(--iq-accent-teal), var(--iq-primary-navy));
  color: white;
}

.foundation-content h4 {
  color: var(--iq-primary-navy);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.foundation-description {
  color: #6c757d;
  margin-bottom: 1rem;
}

.foundation-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.foundation-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.foundation-features i {
  color: var(--iq-accent-teal);
  font-size: 1.1rem;
}

.foundation-features i.text-warning {
  color: #ffc107 !important;
}

.foundation-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--iq-accent-teal);
  margin-top: 1rem;
}

.foundation-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--iq-accent-teal), var(--iq-primary-navy));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.foundation-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--iq-accent-teal);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.foundation-card.selected .foundation-check {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   Step 6: Gates & Wickets
   ========================================== */

.gate-config, .wicket-config {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.form-check-input:checked {
  background-color: var(--iq-accent-teal);
  border-color: var(--iq-accent-teal);
}

.gate-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.gate-type-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.gate-type-card:hover {
  border-color: var(--iq-accent-teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 128, 156, 0.15);
}

.gate-type-card.selected {
  border-color: var(--iq-accent-teal);
  border-width: 3px;
  background: linear-gradient(135deg, rgba(0, 128, 156, 0.05), rgba(42, 63, 74, 0.05));
}

.gate-type-icon {
  font-size: 2.5rem;
  color: var(--iq-primary-navy);
  margin-bottom: 1rem;
}

.gate-type-card.selected .gate-type-icon {
  color: var(--iq-accent-teal);
}

.gate-type-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--iq-primary-navy);
  margin-bottom: 0.5rem;
}

.gate-type-card p {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0;
}

.gate-type-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.gate-type-check {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  color: var(--iq-accent-teal);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.gate-type-card.selected .gate-type-check {
  opacity: 1;
  transform: scale(1);
}

.wicket-extras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
}

.wicket-extras .form-check-label {
  font-weight: 500;
}

/* Responsive - Step 5-6 */
@media (max-width: 768px) {
  .foundation-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .foundation-icon {
    margin: 0 auto;
  }

  .foundation-badge,
  .foundation-check {
    top: 0.5rem;
    right: 0.5rem;
  }

  .gate-type-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Step 7: Accessories
   ========================================== */

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.accessory-card {
  position: relative;
}

.accessory-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.accessory-label {
  display: flex;
  align-items: start;
  gap: 1rem;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.accessory-label:hover {
  border-color: var(--iq-accent-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 128, 156, 0.15);
}

.accessory-checkbox:checked + .accessory-label {
  border-color: var(--iq-accent-teal);
  border-width: 3px;
  background: linear-gradient(135deg, rgba(0, 128, 156, 0.05), rgba(42, 63, 74, 0.05));
}

.accessory-icon {
  font-size: 2.5rem;
  color: var(--iq-primary-navy);
  flex-shrink: 0;
}

.accessory-checkbox:checked + .accessory-label .accessory-icon {
  color: var(--iq-accent-teal);
}

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

.accessory-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--iq-primary-navy);
  margin-bottom: 0.5rem;
}

.accessory-content p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.accessory-price {
  font-weight: 700;
  color: var(--iq-accent-teal);
  font-size: 1rem;
}

.accessory-selected {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--iq-accent-teal);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.accessory-checkbox:checked + .accessory-label .accessory-selected {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   Step 8: Contact & Summary
   ========================================== */

.config-summary {
  background: linear-gradient(135deg, rgba(42, 63, 74, 0.05), rgba(0, 128, 156, 0.05));
  border: 2px solid var(--iq-accent-teal);
  border-radius: 12px;
  padding: 2rem;
}

.config-summary h4 {
  color: var(--iq-primary-navy);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.config-summary h4 i {
  color: var(--iq-accent-teal);
}

.summary-grid {
  display: grid;
  gap: 1rem;
}

.summary-item {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  font-weight: 600;
  color: var(--iq-primary-navy);
}

.summary-value {
  color: #6c757d;
  text-align: right;
}

.summary-value strong {
  color: var(--iq-accent-teal);
}

.contact-form-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.contact-form-section h4 {
  color: var(--iq-primary-navy);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form-section h4 i {
  color: var(--iq-accent-teal);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
  border: 2px solid #dee2e6;
  border-radius: 8px;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  border-color: var(--iq-accent-teal);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 156, 0.15);
}

.contact-form-section .form-check-label a {
  color: var(--iq-accent-teal);
  text-decoration: none;
}

.contact-form-section .form-check-label a:hover {
  text-decoration: underline;
}

/* Responsive - Step 7-8 */
@media (max-width: 768px) {
  .accessories-grid {
    grid-template-columns: 1fr;
  }

  .accessory-label {
    flex-direction: column;
    text-align: center;
  }

  .accessory-icon {
    margin: 0 auto;
  }
}
