/* Contact Page Styles */
.page-hero {
  background: linear-gradient(135deg, var(--dark-bg-3), var(--dark-bg-5));
  padding: 150px 0 100px 0;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(27, 177, 220, 0.05) 0%, transparent 50%);
  animation: pulse-bg 15s ease-in-out infinite;
}
@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.page-hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.contact-section {
  padding: 80px 0 60px 0;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 25px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  opacity: 0;
  transition: all 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(27, 177, 220, 0.2);
  border-color: rgba(27, 177, 220, 0.3);
}
.contact-card:hover::before {
  opacity: 1;
}
.contact-card .icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(27, 177, 220, 0.1), rgba(108, 99, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}
.contact-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}
.contact-card .icon-wrapper i {
  font-size: 26px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}
.contact-card:hover .icon-wrapper i {
  -webkit-text-fill-color: white;
  background: none;
}
.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-light);
}
.contact-card p, .contact-card a {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-card a:hover {
  color: var(--accent-blue);
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg-2), var(--dark-bg-3));
}

.form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}

.form-header {
  text-align: center;
  margin-bottom: 35px;
}
.form-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-icon i {
  font-size: 28px;
  color: white;
}
.form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.form-wrapper .form-header p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}
.form-control {
  background: var(--dark-bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-light);
  transition: all 0.3s ease;
  width: 100%;
}
.form-control:focus {
  background: var(--dark-bg-4);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(27, 177, 220, 0.1);
  color: var(--text-light);
  outline: none;
}
.form-control::placeholder {
  color: var(--text-muted);
}
.btn-submit {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(27, 177, 220, 0.4);
}
.btn-submit i {
  font-size: 14px;
}

/* Info Sidebar */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
}
.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(27, 177, 220, 0.15);
  border-color: rgba(27, 177, 220, 0.3);
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.sidebar-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(27, 177, 220, 0.15), rgba(108, 99, 255, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-icon i {
  font-size: 22px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}

/* Working Hours */
.working-hours-card .hours-list {
  margin: 0;
}
.working-hours-card .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
}
.working-hours-card .hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.working-hours-card .hours-item .day {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.working-hours-card .hours-item .time {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.9rem;
}
.working-hours-card .hours-item .time.closed {
  color: #e74c3c;
}

/* Quick Contact */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--dark-bg-3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.quick-link:hover {
  background: linear-gradient(135deg, rgba(27, 177, 220, 0.1), rgba(108, 99, 255, 0.1));
  transform: translateX(5px);
}
.quick-link i {
  font-size: 18px;
  width: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quick-link span {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.quick-link:hover span {
  color: var(--text-light);
}

/* Response Card */
.response-card {
  background: linear-gradient(135deg, rgba(27, 177, 220, 0.1), rgba(108, 99, 255, 0.1));
  border: 1px solid rgba(27, 177, 220, 0.2);
}
.response-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.response-content > i {
  font-size: 35px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.response-text h4 {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 0 5px 0;
}
.response-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.map-section {
  padding: 100px 0;
}
.map-wrapper {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Light Theme Overrides for Contact Page */
body.light-theme .page-hero {
  background: linear-gradient(135deg, #eef2f7, #d9e2ec) !important;
}

body.light-theme .contact-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .contact-card:hover {
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 30px 60px rgba(13, 110, 253, 0.12);
}

body.light-theme .contact-card h3 {
  color: #1a1a2e;
}

body.light-theme .contact-card p,
body.light-theme .contact-card a {
  color: #4a5568;
}

body.light-theme .form-section {
  background: linear-gradient(135deg, #f8f9fc, #eef2f7) !important;
}

body.light-theme .form-wrapper {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .form-wrapper .form-header p {
  color: #4a5568;
}

body.light-theme .form-group label {
  color: #333;
}

body.light-theme .form-control {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #333;
}

body.light-theme .form-control:focus {
  background: #ffffff;
  border-color: var(--accent-blue);
  color: #333;
}

body.light-theme .form-control::placeholder {
  color: #888;
}

body.light-theme .sidebar-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .sidebar-card:hover {
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
}

body.light-theme .sidebar-card h3 {
  color: #1a1a2e;
}

body.light-theme .sidebar-icon {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(108, 99, 255, 0.1));
}

body.light-theme .working-hours-card .hours-item {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .working-hours-card .hours-item .day {
  color: #4a5568;
}

body.light-theme .quick-link {
  background: #f8f9fa;
}

body.light-theme .quick-link:hover {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(108, 99, 255, 0.08));
}

body.light-theme .quick-link span {
  color: #4a5568;
}

body.light-theme .quick-link:hover span {
  color: #1a1a2e;
}

body.light-theme .response-card {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(108, 99, 255, 0.08));
  border-color: rgba(13, 110, 253, 0.15);
}

body.light-theme .response-text h4 {
  color: #1a1a2e;
}

body.light-theme .response-text p {
  color: #4a5568;
}

body.light-theme .map-wrapper {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .form-wrapper {
    padding: 35px 25px;
  }
  
  .info-sidebar {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 120px 0 80px 0;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .page-hero p {
    font-size: 1.1rem;
  }
  
  .contact-section {
    padding: 60px 0 40px 0;
  }
  
  .form-section {
    padding: 60px 0;
  }
  
  .form-header {
    margin-bottom: 25px;
  }
  
  .form-icon {
    width: 60px;
    height: 60px;
  }
  
  .form-icon i {
    font-size: 24px;
  }
  
  .form-wrapper h2 {
    font-size: 1.6rem;
  }
}
