/* ========================================
   CONTACT PAGE — Full-screen BG + Cards
   ======================================== */

.contact-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image - covers entire screen */
.contact-fullscreen-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-fullscreen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 12s ease;
}
.contact-fullscreen:hover .contact-fullscreen-bg img {
  transform: scale(1.12);
}

/* Dark overlay so text is readable */
.contact-fullscreen-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.72);
  z-index: 1;
}

/* Content on top */
.contact-fullscreen-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--nav-height) + 50px) 0 60px;
}

.contact-center-layout { text-align: center; }

/* Contact cards */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0 60px;
}
.contact-card {
  background: rgba(26,26,26,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 2px;
  padding: 40px 24px;
  text-align: center;
  transition: border-color 0.5s, transform 0.5s var(--transition), background 0.5s;
}
.contact-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  background: rgba(26,26,26,0.7);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.contact-card a { color: var(--color-text-muted); transition: color 0.3s; }
.contact-card a:hover { color: var(--color-accent); }

/* Social & CTA area */
.contact-cta-area { padding-top: 20px; padding-bottom: 40px; }

/* Social links row */
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.social-link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s, background 0.4s, transform 0.3s;
}
.social-link:hover {
  border-color: var(--color-accent);
  background: rgba(201,169,110,0.12);
  transform: translateY(-3px);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-text-muted);
  transition: fill 0.4s;
}
.social-link:hover svg { fill: var(--color-accent); }

/* Social label under icon */
.social-labeled {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.social-labeled span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}
.social-labeled:hover span {
  opacity: 1;
  color: var(--color-accent);
}

/* WhatsApp CTA button */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 36px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.4s, transform 0.3s, box-shadow 0.3s;
}
.whatsapp-cta:hover {
  background: #1eba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-cards-row { grid-template-columns: 1fr; }
  .contact-fullscreen-content { padding-top: calc(var(--nav-height) + 30px); }
}