:root {
  --teal-dark: #083D3E;
  --cream: #F9EFD9;
  --accent-light: #A7D6D1;
  --accent-hover: #7cc7be;
  --text-dark: #2E3A3B;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
}

header {
  background-color: var(--teal-dark);
  color: var(--cream);
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1rem;
  margin: 0.5rem 0 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-top: 0;
}

.intro p {
  margin: 1rem 0;
}

.highlight {
  background-color: var(--accent-light);
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.services, .pricing {
  display: grid;
  gap: 1.5rem;
}

.services {
  grid-template-columns: repeat(2, 1fr);
}

.pricing {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  background-color: var(--accent-hover);
  transform: translateY(-5px);
}

.card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--teal-dark);
}

footer {
  background-color: var(--teal-dark);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--cream);
}

.contact-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--accent-light);
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--accent-hover);
}

.social-icons a i {
  font-size: 2rem;
  margin: 0 10px;
  color: var(--text-dark);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover i {
  transform: scale(1.25);
}

.social-icons a.facebook:hover i {
  color: #1877F2;
}

.social-icons a.instagram:hover i {
  color: #E1306C;
}

.social-icons a.linkedin:hover i {
  color: #0077B5; 
}
/* Modal Overlay */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  animation: fadeIn 0.4s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin: 5% auto;
}

.modal-content h3 {
  margin-top: 0;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  color: #888;
  cursor: pointer;
}

.modal-content .close:hover {
  color: #000;
}

.modal-content form input,
.modal-content form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.modal-content form button {
  background-color: var(--teal-dark);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Modal Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav li {
    margin: 0.5rem 0;
  }

  table, th, td {
    font-size: 0.9rem;
  }
}
