/* ==========================================================================
   CONTACT PAGE (contact.html) SPECIFIC STYLES
   ========================================================================== */

/* Sticky Inner Page Header */
body {
  padding-top: 80px;
}

.site-header-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: var(--color-primary-dark) !important;
}

.site-header {
  position: relative !important;
  width: 100% !important;
  background: rgba(35, 4, 10, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--color-border) !important;
  box-shadow: var(--shadow-sm) !important;
}

.site-header.scrolled,
.site-header-wrapper.is-scrolled .site-header {
  background: rgba(26, 2, 7, 0.98) !important;
  border-bottom: 2px solid var(--color-gold) !important;
  box-shadow: var(--shadow-lg) !important;
}

.header-container {
  height: 80px !important;
}

/* ==========================================================================
   Interactive Contact Form Card & Inputs
   ========================================================================== */
.contact-form-card {
  background: var(--color-surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  border-top: 4px solid var(--color-gold);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal);
}

.contact-form-card:hover {
  border-color: var(--color-gold);
}

.contact-form-title {
  font-size: 1.65rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255, 207, 51, 0.3);
}

/* Form Labels */
.contact-form-card .form-label {
  color: var(--color-gold-light) !important;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  display: block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Form Input & Textarea Controls */
.contact-form-card .form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(30, 4, 9, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--color-border) !important;
  color: var(--color-cream) !important;
  font-size: 0.98rem;
  font-weight: 500;
  outline: none;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.contact-form-card .form-control::placeholder {
  color: rgba(242, 213, 220, 0.45) !important;
  font-weight: 400;
}

.contact-form-card .form-control:focus {
  background: rgba(45, 6, 14, 0.98) !important;
  border-color: var(--color-gold) !important;
  box-shadow:
    0 0 18px var(--color-gold-glow),
    inset 0 0 8px rgba(255, 207, 51, 0.15) !important;
  color: #ffffff !important;
}

/* Custom Dropdown Select */
.contact-form-card select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffcf33' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 16px;
  cursor: pointer;
  padding-right: 2.8rem;
}

.contact-form-card select.form-control option {
  background-color: #2b050d;
  color: var(--color-cream);
  padding: 10px;
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Submit Button */
.contact-form-card .btn-primary {
  width: 100%;
  padding: 0.95rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(255, 8, 56, 0.5);
}

.contact-form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 140, 0, 0.65);
}

/* Office Information Card */
.contact-info-card {
  background: var(--color-surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  border-top: 4px solid var(--color-gold);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.contact-info-title {
  color: var(--color-gold);
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255, 207, 51, 0.3);
}

/* ==========================================================================
   ✨ Shiny + Illuminated Social Link Cards
   ========================================================================== */
.social-cards-section {
  margin-top: 4.5rem;
  text-align: center;
}

.social-cards-title {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 207, 51, 0.35);
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Base Card Style */
.social-card {
  position: relative;
  background: rgba(43, 5, 13, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
}

/* Diagonal Shiny Golden Sheen Sweep on Hover */
.social-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 235, 140, 0.45) 50%,
    rgba(255, 255, 255, 0.75) 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.75s ease;
}

.social-card:hover::after {
  left: 200%;
}

/* Icon Box Anatomy */
.social-card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-card-text {
  text-align: left;
}

.social-card-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-cream);
  transition: all 0.3s ease;
}

.social-card-handle {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

/* 1. Facebook */
.social-card-facebook .social-card-icon-box {
  background: rgba(24, 119, 242, 0.2);
  border: 1.5px solid rgba(24, 119, 242, 0.5);
  color: #1877f2;
}

.social-card-facebook:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #1877f2;
  background: linear-gradient(
    135deg,
    rgba(24, 119, 242, 0.28) 0%,
    rgba(43, 5, 13, 0.95) 60%,
    rgba(255, 207, 51, 0.18) 100%
  );
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.75),
    0 0 25px rgba(24, 119, 242, 0.7),
    0 0 45px rgba(255, 207, 51, 0.45),
    inset 0 0 15px rgba(24, 119, 242, 0.3);
}

.social-card-facebook:hover .social-card-icon-box {
  background: #1877f2;
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.12) rotate(-4deg);
  box-shadow:
    0 0 20px #1877f2,
    0 0 35px rgba(255, 207, 51, 0.8);
}

.social-card-facebook:hover .social-card-name {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(255, 207, 51, 0.8);
}

/* 2. Instagram */
.social-card-instagram .social-card-icon-box {
  background: rgba(225, 48, 108, 0.2);
  border: 1.5px solid rgba(225, 48, 108, 0.5);
  color: #e1306c;
}

.social-card-instagram:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #e1306c;
  background: linear-gradient(
    135deg,
    rgba(225, 48, 108, 0.28) 0%,
    rgba(43, 5, 13, 0.95) 60%,
    rgba(255, 207, 51, 0.18) 100%
  );
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.75),
    0 0 25px rgba(225, 48, 108, 0.7),
    0 0 45px rgba(255, 207, 51, 0.45),
    inset 0 0 15px rgba(225, 48, 108, 0.3);
}

.social-card-instagram:hover .social-card-icon-box {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.12) rotate(-4deg);
  box-shadow:
    0 0 20px #e1306c,
    0 0 35px rgba(255, 207, 51, 0.8);
}

.social-card-instagram:hover .social-card-name {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(255, 207, 51, 0.8);
}

/* 3. YouTube */
.social-card-youtube .social-card-icon-box {
  background: rgba(255, 0, 0, 0.2);
  border: 1.5px solid rgba(255, 0, 0, 0.5);
  color: #ff0000;
}

.social-card-youtube:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #ff0000;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.28) 0%,
    rgba(43, 5, 13, 0.95) 60%,
    rgba(255, 207, 51, 0.18) 100%
  );
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.75),
    0 0 25px rgba(255, 0, 0, 0.7),
    0 0 45px rgba(255, 207, 51, 0.45),
    inset 0 0 15px rgba(255, 0, 0, 0.3);
}

.social-card-youtube:hover .social-card-icon-box {
  background: #ff0000;
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.12) rotate(-4deg);
  box-shadow:
    0 0 20px #ff0000,
    0 0 35px rgba(255, 207, 51, 0.8);
}

.social-card-youtube:hover .social-card-name {
  color: var(--color-gold-light);
  text-shadow: 0 0 12px rgba(255, 207, 51, 0.8);
}

/* ==========================================================================
   🗺️ Creative Decorated Google Map Showcase
   ========================================================================== */
.map-showcase-wrapper {
  margin-top: 4.5rem;
  position: relative;
}

.map-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-title {
  font-size: 1.65rem;
  color: var(--color-gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 12px rgba(255, 207, 51, 0.35);
}

.map-pin-pulse {
  display: inline-block;
  animation: pinBounceGlow 2s ease-in-out infinite alternate;
}

@keyframes pinBounceGlow {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 207, 51, 0.4));
  }
  100% {
    transform: translateY(-5px) scale(1.15);
    filter: drop-shadow(0 0 12px rgba(255, 8, 56, 0.8));
  }
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 5, 13, 0.85);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-light);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
}

.map-directions-btn:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, #ffae00 100%);
  color: #2b050d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-gold-glow);
}

/* Radiant Outer Decorative Gold & Saffron Frame */
.map-frame-outer {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 7px;
  background: linear-gradient(
    135deg,
    rgba(255, 207, 51, 0.8) 0%,
    rgba(255, 42, 75, 0.45) 50%,
    rgba(255, 140, 0, 0.8) 100%
  );
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(255, 207, 51, 0.35);
  animation: mapFrameGlowPulse 4s ease-in-out infinite alternate;
  transition: transform 0.4s ease;
}

.map-frame-outer:hover {
  transform: translateY(-3px);
}

@keyframes mapFrameGlowPulse {
  0% {
    box-shadow:
      0 14px 35px rgba(0, 0, 0, 0.75),
      0 0 22px rgba(255, 207, 51, 0.25);
  }
  100% {
    box-shadow:
      0 22px 55px rgba(0, 0, 0, 0.85),
      0 0 45px rgba(255, 140, 0, 0.5),
      0 0 70px rgba(255, 207, 51, 0.35);
  }
}

.map-aura-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 207, 51, 0.35) 0%,
    rgba(255, 140, 0, 0.2) 45%,
    transparent 75%
  );
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.map-frame-inner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 440px;
  background: #e5e3df;
  z-index: 1;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-live-beacon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(35, 4, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  user-select: none;
}

.beacon-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #00e676;
  box-shadow:
    0 0 10px #00e676,
    0 0 20px rgba(0, 230, 118, 0.8);
  animation: beaconPing 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes beaconPing {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 6px #00e676;
  }
  50% {
    transform: scale(1.25);
    box-shadow:
      0 0 16px #00e676,
      0 0 28px rgba(0, 230, 118, 0.9);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 6px #00e676;
  }
}

.beacon-text {
  color: var(--color-gold-light);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.map-corner-accent {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid var(--color-gold);
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255, 207, 51, 0.9));
}
.map-corner-tl {
  top: 4px;
  left: 4px;
  border-right: none;
  border-bottom: none;
  border-radius: 6px 0 0 0;
}
.map-corner-tr {
  top: 4px;
  right: 4px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 6px 0 0;
}
.map-corner-bl {
  bottom: 4px;
  left: 4px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 6px;
}
.map-corner-br {
  bottom: 4px;
  right: 4px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 6px 0;
}

/* ==========================================================================
   📱 Fully Responsive Mobile Media Queries
   ========================================================================== */
@media (max-width: 900px) {
  .social-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .social-card {
    padding: 1.25rem 1.4rem !important;
  }
}

@media (max-width: 768px) {
  .contact-form-card,
  .contact-info-card {
    padding: 1.6rem 1.25rem !important;
  }

  .social-cards-section {
    margin-top: 3rem !important;
  }

  .social-cards-title {
    font-size: 1.5rem !important;
  }

  .social-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .social-card {
    width: 100% !important;
    padding: 1.15rem 1.25rem !important;
    gap: 1rem !important;
  }

  .social-card-name {
    font-size: 1.05rem !important;
  }

  .social-card-handle {
    font-size: 0.82rem !important;
  }

  .social-card-icon-box {
    width: 46px !important;
    height: 46px !important;
  }

  .map-showcase-wrapper {
    margin-top: 3.5rem !important;
  }

  .map-header-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  .map-title {
    font-size: 1.3rem !important;
  }

  .map-directions-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.75rem 1rem !important;
  }

  .map-frame-inner {
    height: 320px !important;
  }

  .map-live-beacon {
    bottom: 12px !important;
    left: 12px !important;
    padding: 5px 12px !important;
  }

  .beacon-text {
    font-size: 0.78rem !important;
  }
}
