@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins;
}

:root {
  --primary-color: #4a6fa5;
  --primary-dark: #3a5a80;
  --secondary-color: #d4a59a;
  --accent-color: #ec3507;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --text-light: #6c757d;
  --white: #ffffff;
  --black: #000000;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Playfair Display", serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 50px;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  margin: 0;
  padding: 0;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero-section {
  margin-bottom: 4rem;
  padding-top: 2rem;
}

.heroContainer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section h1 {
  margin-top: 70px;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.divider-line {
  width: 100px;
  height: 2px;
  background-color: var(--black);
  margin: 0 auto 2rem;
}

.hero-subdescription {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styles */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* Quick Contact Section */
.quick-contact-section {
  margin-bottom: 5rem;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .quick-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-contact-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.quick-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.call-card:hover {
  border-color: var(--success-color);
}

.email-card:hover {
  border-color: var(--primary-color);
}

.visit-card:hover {
  border-color: var(--accent-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.5rem;
}

.quick-contact-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.quick-contact-card > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.phone-display,
.email-display,
.address-display {
  background: var(--light-color);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: column;
}

.phone-display i,
.email-display i,
.address-display i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.phone-number,
.email-address {
  font-weight: 700;
  color: var(--text-color);
  font-size: 1.1rem;
}

.address-text {
  color: var(--text-color);
  line-height: 1.6;
}

.contact-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.call-btn {
  background: var(--success-color);
  color: white;
}

.call-btn:hover {
  background: #218838;
  transform: scale(1.02);
}

.email-btn {
  background: var(--primary-color);
  color: white;
}

.email-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.visit-btn {
  background: var(--accent-color);
  color: white;
}

.visit-btn:hover {
  background: #d12d00;
  transform: scale(1.02);
}

.availability {
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.availability i {
  color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .contact-form-section {
    grid-template-columns: 2fr 1fr;
  }
}

.form-container {
  background: white;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: var(--box-shadow);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.optional {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.char-count {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 0.5rem;
}

.checkbox-group {
  flex-direction: row;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.submit-btn {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.info-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-item strong {
  display: block;
  color: var(--text-color);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

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

.info-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.info-item span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: var(--text-color);
}

.time {
  color: var(--text-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube {
  background: #ff0000;
}

.social-link.twitter {
  background: #1da1f2;
}

/* Emergency Section */
.emergency-section {
  margin-bottom: 5rem;
  background: linear-gradient(135deg, var(--accent-color), #d12d00);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: var(--box-shadow);
}

.emergency-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.emergency-content i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.emergency-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.emergency-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: var(--accent-color);
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition);
}

.emergency-btn:hover {
  background: var(--light-color);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.emergency-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Map Section */
.map-section {
  margin-bottom: 5rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
}

.map-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
}

.map-info i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
    margin-top: 50px;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-subdescription {
    font-size: 1rem;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .emergency-content h2 {
    font-size: 1.5rem;
  }

  .emergency-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .map-info {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}