/* ===== BODY STYLES FOR NAVBAR ===== */
body {
  padding-top: 85px; /* Space for fixed navbar */
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23a94d4d08" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  pointer-events: none;
}

.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #a94d4d, #d4a574);
  margin: 0 auto 25px;
  border-radius: 2px;
}

.contact-hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 0;
}

/* Contact Information Section */
.contact-info-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #a94d4d, #d4a574);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(169, 77, 77, 0.15);
  border-color: #d4a574;
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a94d4d, #d4a574);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-icon {
  color: #ffffff;
  font-size: 2rem;
}

.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c1810;
  margin-bottom: 20px;
}

.contact-card-content {
  color: #6c757d;
  line-height: 1.6;
}

.contact-address {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
}

.contact-address strong {
  color: #a94d4d;
}

.contact-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 0;
}

/* Contact Phone Items */
.contact-phone-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(169, 77, 77, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-phone-item:hover {
  background: rgba(169, 77, 77, 0.1);
  transform: translateX(5px);
}

.contact-phone-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #a94d4d, #d4a574);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-phone-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.phone-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  display: block;
  margin-bottom: 3px;
}

.phone-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2c1810;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: #a94d4d;
}

/* Opening Hours */
.opening-hours {
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(169, 77, 77, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c1810;
}

.time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
}

.time.closed {
  color: #dc3545;
  font-weight: 600;
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #6c757d;
  font-style: italic;
  background: rgba(212, 165, 116, 0.1);
  padding: 10px;
  border-radius: 8px;
}

.hours-note i {
  color: #d4a574;
}

/* Map Section */
.contact-map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c1810 0%, #3d2317 100%);
}

.map-header {
  text-align: center;
  margin-bottom: 50px;
}

.map-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f0c0c0;
  margin-bottom: 15px;
}

.map-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #d4b5a7;
  font-style: italic;
}

.contact-map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.contact-map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.contact-map {
  width: 100%;
  height: 500px;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.contact-map-container:hover .contact-map {
  filter: grayscale(0%);
}

/* Special Features Section */
.contact-features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.4s ease;
  border-radius: 15px;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(169, 77, 77, 0.05);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a94d4d, #d4a574);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(169, 77, 77, 0.3);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c1810;
  margin-bottom: 15px;
}

.feature-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-hero-section {
    padding: 100px 0 60px;
  }
  
  .contact-hero-title {
    font-size: 2.8rem;
  }
  
  .contact-info-section,
  .contact-map-section,
  .contact-features-section {
    padding: 60px 0;
  }
  
  .contact-card {
    margin-bottom: 30px;
  }
  
  .contact-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 80px 0 50px;
  }
  
  .contact-hero-title {
    font-size: 2.2rem;
  }
  
  .contact-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-phone-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .map-title {
    font-size: 2rem;
  }
  
  .contact-map {
    height: 350px;
  }
  
  .feature-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .contact-hero-title {
    font-size: 1.8rem;
  }
  
  .contact-hero-line {
    width: 80px;
    height: 3px;
  }
  
  .contact-hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-card-title {
    font-size: 1.2rem;
  }
  
  .contact-icon-wrapper,
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-card-icon {
    font-size: 1.5rem;
  }
  
  .feature-icon {
    font-size: 1.5rem;
  }
  
  .map-title {
    font-size: 1.5rem;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .contact-info-section,
  .contact-map-section,
  .contact-features-section {
    padding: 50px 0;
  }
}

/* Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.05); 
  }
}

.contact-icon-wrapper {
  animation: float 3s ease-in-out infinite;
}

.feature-icon {
  animation: pulse 2s ease-in-out infinite;
}

/* Custom Scrollbar */
.contact-card::-webkit-scrollbar {
  width: 5px;
}

.contact-card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.contact-card::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #a94d4d, #d4a574);
  border-radius: 10px;
}

.contact-card::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #8a3d3d, #c4975d);
}

/* Leaflet Map Custom Styles */
.leaflet-popup-content-wrapper {
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-popup-tip {
  background: transparent !important;
}

.leaflet-control-zoom a {
  background: rgba(169, 77, 77, 0.9) !important;
  color: white !important;
  border-radius: 5px !important;
}

.leaflet-control-zoom a:hover {
  background: rgba(169, 77, 77, 1) !important;
}

/* Enhanced Interactive Elements */
.contact-phone-number:focus,
.phone-number:focus {
  outline: 2px solid #a94d4d;
  outline-offset: 2px;
  border-radius: 3px;
}

.contact-card:focus-within {
  outline: 2px solid #a94d4d;
  outline-offset: 5px;
}

/* Print Styles */
@media print {
  .contact-hero-section,
  .contact-features-section {
    background: white !important;
  }
  
  .contact-map-section {
    background: white !important;
    color: black !important;
  }
  
  .map-title,
  .contact-hero-title {
    color: black !important;
  }
} 