/* ==========================================
   1. ROOT VARIABLES & HERO SECTION
   ========================================== */
:root {
  --contact-primary: #f14141;
  --contact-bg-dark: #080808;
  --contact-card-bg: #0c0c0c;
  --contact-border: rgba(255, 255, 255, 0.08);
  --contact-input-bg: #141414;
}

#contact-hero {
  position: relative;
  min-height: 40vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-color: var(--contact-bg-dark);
}

#contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.65) 0%, rgba(8, 8, 8, 0.95) 100%);
  z-index: 1;
}

#contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* ==========================================
   2. CONTACT SECTION & INFO CARDS
   ========================================== */
#contact-main {
  background-color: var(--contact-bg-dark);
}

.info-card {
  background-color: var(--contact-card-bg);
  border: 1px solid var(--contact-border);
  border-radius: 0.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
  border-color: rgba(241, 65, 65, 0.4);
}

/* Phone, Email, Location, and Clock Icons */
.info-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(241, 65, 65, 0.1);
  color: #f14141;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-icon i {
  color: #f14141 !important;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

/* Social Media Icons */
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--contact-card-bg);
  border: 1px solid var(--contact-border);
  color: #f14141;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn i {
  color: #f14141 !important;
  transition: color 0.3s ease;
}

.social-btn:hover {
  background-color: #f14141;
  border-color: #f14141;
  color: #ffffff;
  transform: translateY(-3px);
}

.social-btn:hover i {
  color: #ffffff !important;
}

/* ==========================================
   3. FORM STYLES
   ========================================== */
.contact-form-card {
  background-color: var(--contact-card-bg);
  border: 1px solid var(--contact-border);
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.contact-input {
  background-color: var(--contact-input-bg) !important;
  border: 1px solid var(--contact-border) !important;
  color: #ffffff !important;
  padding: 12px 16px;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
  border-color: #f14141 !important;
  box-shadow: 0 0 0 0.25rem rgba(241, 65, 65, 0.2) !important;
  outline: none;
}

.contact-input::placeholder {
  color: #666666;
}

select.contact-input option {
  background-color: #141414;
  color: #ffffff;
}

/* Send Message Button with #f14141 Border */
.btn-contact-submit {
  background-color: var(--contact-primary);
  border: 2px solid #f14141 !important;
  color: #ffffff;
  border-radius: 50rem;
  transition: all 0.3s ease;
}

.btn-contact-submit:hover {
  background-color: #d63333;
  border-color: #f14141 !important;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(241, 65, 65, 0.35);
  transform: translateY(-2px);
}

/* ==========================================
   4. MAP CONTAINER
   ========================================== */
.map-container iframe {
  filter: grayscale(80%) invert(90%) contrast(120%);
  width: 100%;
  height: 100%;
}