/* Tshirtprint2u Malaysia - Contact Page Styles */

:root {
  --primary-blue: #0056A6;
  --secondary-gold: #FFC107;
  --accent-red: #CC0000;
  --dark-text: #212529;
  --light-bg: #F8F9FA;
  --border-color: #E0E0E0;
  --success-green: #28a745;
  --whatsapp-green: #25D366;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Header & Navigation */

.navbar-brand {
  font-weight: 700;
  color: var(--primary-blue) !important;
}

.nav-link {
  font-weight: 500;
}

.nav-link.active {
  color: var(--primary-blue) !important;
  font-weight: 600;
}

/* Appointment Notice */

.appointment-notice {
  background: linear-gradient(90deg, #fff8e1 0%, #ffecb3 100%);
  border-left: 4px solid var(--secondary-gold);
  padding: 16px 20px;
  margin: 20px 0 30px;
  border-radius: 8px;
  animation: fadeInUp 0.6s ease-out;
}

.appointment-notice i {
  color: var(--secondary-gold);
}

/* Contact Page Hero */

.contact-hero {
  background: linear-gradient(rgba(0, 86, 166, 0.85), rgba(0, 86, 166, 0.9)), url('../../assets/img/hero-team.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  margin-bottom: 40px;
}

.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-action-btn {
  background: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: white !important;
  border-color: var(--primary-blue);
}

.response-time {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Methods Cards */

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
}

.contact-card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 86, 166, 0.15);
}

.contact-card.appointment-card {
  border-top: 4px solid var(--secondary-gold);
}

.appointment-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-gold);
  color: #333;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  margin-left: auto;
  margin-right: auto;
}

.phone-icon {
  background-color: rgba(0, 86, 166, 0.1);
  color: var(--primary-blue);
}

.email-icon {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-green);
}

.whatsapp-icon {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-green);
}

.appointment-icon {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--secondary-gold);
}

/* Buttons */

.btn-primary {
  background-color: var(--primary-blue);
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background-color: #004085;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 86, 166, 0.2);
}

.btn-success {
  background-color: var(--whatsapp-green);
  border-color: var(--whatsapp-green);
}

.btn-success:hover {
  background-color: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-warning {
  background-color: var(--secondary-gold);
  border-color: var(--secondary-gold);
  color: #333;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

/* Map Section */

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-overlay h6 {
  color: var(--primary-blue);
}

/* FAQ Section */

.accordion-button {
  font-weight: 600;
  padding: 18px 20px;
  border-radius: 8px !important;
  margin-bottom: 8px;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 86, 166, 0.08);
  color: var(--primary-blue);
  box-shadow: 0 3px 10px rgba(0, 86, 166, 0.1);
}

/* CTA Section */

.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #004085 100%);
  color: white;
  padding: 70px 0;
  border-radius: 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-50px, 100px);
}

.cta-section .btn-light {
  background: white;
  color: var(--primary-blue);
  font-weight: 600;
}

.cta-section .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Footer */

footer {
  background-color: #1a1a1a;
  color: #f1f1f1;
}

.footer-heading {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-gold);
}

footer a.text-white-50:hover {
  color: white !important;
  text-decoration: underline;
}

/* Animations */

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

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Contact Links */

.contact-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #004085;
  text-decoration: underline;
}

/* Business Info */

.business-info {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
}

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

@media (max-width: 768px) {
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .map-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .map-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 50px 0;
    margin: 40px 0;
  }
}

@media (max-width: 768px) {
  .response-time {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-hero .lead {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-action-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .map-container {
    height: 350px;
  }
}

