/* ============================================
CONTACT COMPONENT STYLES
============================================ */

.contact-component {
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact-component .contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-component .contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.contact-component .contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 30, 38, 0.85);
  z-index: 1;
}

.contact-component .contact-bg-text {
  position: absolute;
  top: 5%;
  right: -5%;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(100px, 18vw, 280px);
  color: rgba(202, 166, 106, 0.03);
  z-index: 1;
  pointer-events: none;
  letter-spacing: 12px;
  user-select: none;
}

.contact-component .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============================================
HERO
============================================ */

.contact-component .contact-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 20px 0;
}

.contact-component .contact-hero .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.contact-component .contact-hero .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 12px;
}

.contact-component .contact-hero .section-subtitle {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
ENQUIRY CARDS
============================================ */

.contact-component .enquiry-section {
  margin-bottom: 50px;
}

.contact-component .enquiry-section .enquiry-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-align: center;
}

.contact-component .enquiry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.contact-component .enquiry-card {
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-component .enquiry-card:hover {
  border-color: rgba(202, 166, 106, 0.3);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.contact-component .enquiry-card.active {
  border-color: var(--gold-primary);
  background: rgba(202, 166, 106, 0.08);
  box-shadow: 0 8px 30px rgba(202, 166, 106, 0.05);
}

.contact-component .enquiry-card .card-icon {
  font-size: 28px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 8px;
}

.contact-component .enquiry-card .card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.contact-component .enquiry-card .card-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  display: block;
}

/* ============================================
CONTACT FORM
============================================ */

.contact-component .contact-form-container {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.1);
  border-radius: 24px;
  padding: 45px 40px;
  margin-bottom: 60px;
}

.contact-component .contact-form-header {
  margin-bottom: 32px;
}

.contact-component .contact-form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-component .contact-form-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-component .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-component .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-component .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-component .form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.contact-component .form-group input,
.contact-component .form-group select,
.contact-component .form-group textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-component .form-group input:focus,
.contact-component .form-group select:focus,
.contact-component .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
}

.contact-component .form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23caa66a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.contact-component .form-group select option {
  background: var(--dark-secondary);
  color: var(--text-light);
}

.contact-component .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-component .form-group .char-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  margin-top: 4px;
}

.contact-component .radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.contact-component .radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-weight: 400;
}

.contact-component .radio-group input[type="radio"],
.contact-component .radio-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.contact-component .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 4px;
}

.contact-component .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-weight: 400;
}

.contact-component .checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.contact-component .btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold-gradient);
  color: var(--dark);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.contact-component .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

/* ============================================
CONTACT CARDS
============================================ */

.contact-component .contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-component .contact-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-component .contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-component .contact-card .card-icon {
  font-size: 32px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 12px;
}

.contact-component .contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-component .contact-card .card-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-component .contact-card a {
  color: var(--gold-primary);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-component .contact-card a:hover {
  color: var(--gold-light);
}

/* ============================================
LOCATION CARD
============================================ */

.contact-component .location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(202, 166, 106, 0.1);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
}

.contact-component .location-card .location-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.contact-component .location-card .location-content {
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-component .location-card .location-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-component .location-card .location-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.contact-component .location-card .location-info .location-details {
  margin-top: 12px;
}

.contact-component .location-card .location-info .location-details span {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(202, 166, 106, 0.15);
  border-radius: 50px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
  margin-bottom: 8px;
}

.contact-component .location-card .location-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-component .location-card .location-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.contact-component .location-card .location-actions .btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.contact-component .location-card .location-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.contact-component .location-card .location-actions .btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.contact-component .location-card .location-actions .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
FAQ SECTION
============================================ */

.contact-component .faq-section {
  margin-bottom: 60px;
}

.contact-component .faq-section .faq-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-component .faq-section .faq-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-component .faq-section .faq-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.contact-component .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-component .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-component .faq-item:hover {
  border-color: rgba(202, 166, 106, 0.15);
}

.contact-component .faq-item.active {
  border-color: var(--gold-primary);
}

.contact-component .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-light);
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-component .faq-question:hover {
  color: var(--gold-primary);
}

.contact-component .faq-question .faq-icon {
  font-size: 14px;
  color: var(--gold-primary);
  transition: transform 0.4s ease;
}

.contact-component .faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
}

.contact-component .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-component .faq-item.active .faq-answer {
  max-height: 150px;
}

.contact-component .faq-answer p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.contact-component .faq-answer .email-link-inline {
  color: var(--gold-primary);
}

/* ============================================
CONSULTATION BANNER
============================================ */

.contact-component .consultation-banner {
  background: linear-gradient(135deg, rgba(202, 166, 106, 0.15), rgba(177, 170, 100, 0.08));
  border: 1px solid rgba(202, 166, 106, 0.15);
  border-radius: 24px;
  padding: 40px 48px;
  text-align: center;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-component .consultation-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-component .consultation-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 550px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.contact-component .consultation-banner .banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-component .consultation-banner .banner-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.contact-component .consultation-banner .banner-actions .btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.contact-component .consultation-banner .banner-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.contact-component .consultation-banner .banner-actions .btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.contact-component .consultation-banner .banner-actions .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
CTA FOOTER
============================================ */

.contact-component .contact-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-component .contact-footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-component .contact-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  max-width: 550px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.contact-component .contact-footer .footer-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-component .contact-footer .footer-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.contact-component .contact-footer .footer-actions .btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.contact-component .contact-footer .footer-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.contact-component .contact-footer .footer-actions .btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.contact-component .contact-footer .footer-actions .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
FORM SUCCESS
============================================ */

.contact-component .form-success {
  text-align: center;
  padding: 40px 20px;
}

.contact-component .form-success .success-icon {
  font-size: 64px;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.contact-component .form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.contact-component .form-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.contact-component .form-success .success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-component .form-success .success-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.contact-component .form-success .success-actions .btn-primary {
  background: var(--gold-gradient);
  color: var(--dark);
  border-color: var(--gold-primary);
}

.contact-component .form-success .success-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(202, 166, 106, 0.25);
}

.contact-component .form-success .success-actions .btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.contact-component .form-success .success-actions .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================
REVEAL ANIMATIONS
============================================ */

.contact-component .contact-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-component .contact-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-component .contact-reveal-delay-1 {
  transition-delay: 0.1s;
}

.contact-component .contact-reveal-delay-2 {
  transition-delay: 0.2s;
}

.contact-component .contact-reveal-delay-3 {
  transition-delay: 0.3s;
}

.contact-component .contact-reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
RESPONSIVE
============================================ */

@media (max-width: 1024px) {
  .contact-component .enquiry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-component .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-component .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-component .location-card .location-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-component .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 768px) {
  .contact-component {
    padding: 60px 0;
  }

  .contact-component .contact-hero {
    margin-bottom: 40px;
  }

  .contact-component .enquiry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-component .enquiry-card {
    padding: 18px 12px;
  }

  .contact-component .enquiry-card .card-desc {
    display: none;
  }

  .contact-component .contact-form-container {
    padding: 28px 20px;
  }

  .contact-component .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-component .radio-group {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .contact-component .checkbox-group {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .contact-component .location-card .location-content {
    padding: 24px 20px;
  }

  .contact-component .location-card .location-image {
    height: 180px;
  }

  .contact-component .consultation-banner {
    padding: 28px 20px;
  }

  .contact-component .consultation-banner .banner-actions {
    flex-direction: column;
  }

  .contact-component .consultation-banner .banner-actions .btn {
    width: 100%;
  }

  .contact-component .contact-footer .footer-actions {
    flex-direction: column;
  }

  .contact-component .contact-footer .footer-actions .btn {
    width: 100%;
  }

  .contact-component .form-success .success-actions {
    flex-direction: column;
  }

  .contact-component .form-success .success-actions .btn {
    width: 100%;
    text-align: center;
  }

  .contact-component .location-card .location-actions {
    flex-direction: column;
  }

  .contact-component .location-card .location-actions .btn {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .contact-component .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .contact-component .contact-hero .section-title {
    font-size: 28px;
  }

  .contact-component .contact-form-container {
    padding: 20px 16px;
  }

  .contact-component .contact-form-header h3 {
    font-size: 22px;
  }

  .contact-component .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

}

/* ============================================
REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {
  .contact-component .contact-reveal {
    opacity: 1;
    transform: none;
  }

  .contact-component .enquiry-card {
    transition: none;
  }

  .contact-component .enquiry-card:hover {
    transform: none;
  }

  .contact-component .contact-card {
    transition: none;
  }

  .contact-component .contact-card:hover {
    transform: none;
  }

  .contact-component .faq-item {
    transition: none;
  }

  .contact-component .faq-answer {
    transition: none;
  }

  .contact-component .btn-submit {
    transition: none;
  }

  .contact-component .btn-submit:hover {
    transform: none;
  }

  .contact-component .location-card .location-actions .btn {
    transition: none;
  }

  .contact-component .location-card .location-actions .btn:hover {
    transform: none;
  }

  .contact-component .consultation-banner .banner-actions .btn {
    transition: none;
  }

  .contact-component .consultation-banner .banner-actions .btn:hover {
    transform: none;
  }

  .contact-component .contact-footer .footer-actions .btn {
    transition: none;
  }

  .contact-component .contact-footer .footer-actions .btn:hover {
    transform: none;
  }

  .contact-component .form-success .success-actions .btn {
    transition: none;
  }

  .contact-component .form-success .success-actions .btn:hover {
    transform: none;
  }

}

/* Component styles are inherited from base CSS */

