/* ============================================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================================ */

/* Page Title Section */
.page-title-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5fa8 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-title-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
  content: "›";
  font-size: 1.2rem;
}

/* Contact Cards */
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24,63,114,0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), #2a5fa8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Address List Styles */
.address-list {
  text-align: left;
}

.address-item {
  margin-bottom: 20px;
}

.address-item:last-child {
  margin-bottom: 0;
}

.address-item strong {
  color: var(--primary);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.address-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Phone List Styles */
.phone-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  padding: 8px 0;
}

.contact-phone:hover {
  color: var(--primary);
  gap: 15px;
  transform: translateX(5px);
}

.contact-phone i {
  font-size: 1rem;
}

/* Email & Website List Styles */
.email-web-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-email,
.contact-web {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 8px 0;
  word-break: break-all;
}

.contact-email:hover,
.contact-web:hover {
  color: var(--primary);
  gap: 15px;
  transform: translateX(5px);
}

.contact-email i,
.contact-web i {
  font-size: 1rem;
}

/* Enquiry Form */
.enquiry-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 5px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207,46,46,0.1);
  background: var(--white);
}

/* Captcha Styles */
.captcha-group {
  margin-bottom: 0;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-code {
  background: linear-gradient(135deg, var(--primary), #2a5fa8);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 5px;
  display: inline-block;
}

.refresh-captcha {
  background: var(--light);
  border: 1px solid #e0e0e0;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.refresh-captcha:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.submit-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  gap: 15px;
}

/* Map Section */
.map-section {
  padding: 0 0 70px 0;
  background: var(--light);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-title-section {
    padding: 60px 0 40px;
  }
  
  .page-title-section h1 {
    font-size: 2.5rem;
  }
  
  .enquiry-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-title-section h1 {
    font-size: 2rem;
  }
  
  .breadcrumb-item {
    font-size: 0.9rem;
  }
  
  .contact-card {
    padding: 25px 20px;
  }
  
  .contact-card h3 {
    font-size: 1.2rem;
  }
  
  .enquiry-form-wrapper {
    padding: 25px 20px;
  }
  
  .captcha-container {
    flex-wrap: wrap;
  }
  
  .captcha-code {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }
  
  .map-section {
    padding: 0 0 50px 0;
  }
}

@media (max-width: 576px) {
  .page-title-section {
    padding: 50px 0 30px;
  }
  
  .page-title-section h1 {
    font-size: 1.6rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 1.5rem;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
  }
  
  .address-item p,
  .address-item strong {
    font-size: 0.85rem;
  }
  
  .contact-phone,
  .contact-email,
  .contact-web {
    font-size: 0.85rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.85rem;
  }
  
  .submit-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .captcha-code {
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .refresh-captcha {
    width: 40px;
    height: 40px;
  }
}