/* VARIABLES AND RESET  */
:root {
  --primary-color: #000080;
  --secondary-color: #1e3a8a;
  --accent-color: #ff6ec7;
  --light-color: #f0f4ff;
  --dark-color: #00004d;
  --text-on-dark: #ffffff;
  --success-color: #4dd0e1;
  --console-light-pink: #f8bbd0;
  --footer-bottom-bg: rgba(0, 0, 0, 0.2);
  --social-icon-bg: rgba(255, 255, 255, 0.1);
  --header-height: 100px;
  --header-height-scrolled: 60px;
  --transition-speed: 0.3s;
}

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

/* HEADER & LOGO */
body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--light-color);
  padding-top: var(--header-height);
  transition: none;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: var(--header-height);
  transition: all var(--transition-speed) ease;
  z-index: 1000;
}

.header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* LOGO CONTAINER */
.logo-container {
  display: flex;
  align-items: center;
  padding: 0 2rem 0 2rem;
  height: 100%;
  width: auto;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  height: 100%;
  transition: all var(--transition-speed) ease;
}

.logo img {
  height: calc(var(--header-height) - 15px);
  width: auto;
  transition: all var(--transition-speed) ease;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-on-dark);
  transition: all var(--transition-speed) ease;
  font-family: "Book Antiqua", serif;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.logo-main {
  font-size: 1.8rem;
  transition: all var(--transition-speed) ease;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  opacity: 1;
  font-weight: bold;
}

.logo-large .logo-text {
  display: none;
}

.logo-large img {
  height: calc(var(--header-height) - 10px);
}

.logo-full .logo-tagline {
  opacity: 1;
}

.logo-name-only .logo-tagline {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* SCROLL STATUS */
.header.scrolled .logo img {
  height: calc(var(--header-height-scrolled) - 20px);
}

.header.scrolled .logo-main {
  font-size: 1.4rem;
}

.header.scrolled .logo-tagline {
  font-size: 0.75rem;
  opacity: 0;
  height: 0;
}

/* NAVEGATION BAR */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-speed);
  position: relative;
  padding: 0.5rem 0;
}

/* NORMAL */
.nav-link:not(.active) {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* ACTIVE */
.nav-link.active {
  color: var(--accent-color);
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 400px;
  background-color: var(--success-color);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.29' fill-rule='evenodd'/%3E%3C/svg%3E");
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-on-dark);
  margin-top: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  transform: translateY(-5%);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* BOTTONS */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--secondary-color);
  color: var(--text-on-dark);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-speed);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  margin: 0 0.5rem;
}
.btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-hero {
  padding: 12px 30px;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  color: var(--text-on-dark);
  border: none;
  border-radius: 30px;
  transition: var(--transition-speed);
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.btn-hero:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--text-on-dark);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
}

/* SERVICES SECTION */
.services-section {
  padding: 6rem 2rem;
  background-color: var(--light-color);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--dark-color);
  opacity: 0.9;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* SERVICES */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* FEATURES LIST */
.service-features {
  margin: 1.5rem 0 2.5rem;
  padding-left: 0;
  flex-grow: 1;
}

.service-features li {
  padding: 0.6rem 0;
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.5;
  font-size: 1rem;
}

.service-features li::before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: 0.4rem;
}

/* SERVICES BOTTON */
.btn-service {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  margin-top: auto;
  text-align: center;
}

.btn-service:hover {
  background-color: var(--dark-color);
  transform: translateY(-2px);
}

/* SEVICES FORM */
.service-form-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  justify-content: center;
  align-items: center;
}

.service-form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.service-form-modal {
  position: relative;
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

.service-form-modal h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

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

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.close-form {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.close-form:hover {
  color: #333;
  transform: scale(1.1);
}

.btn-submit {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--primary-color);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  margin: 0;
}

.btn-submit:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-cancel {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: transparent;
  color: #555;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-speed);
  cursor: pointer;
  font-size: 0.9rem;
  margin: 0;
}

.btn-cancel:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* SUCCES/ERROR MESSAGE */
.message-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease;
}

.message-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.message-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: translateY(-20px);
  transition: transform var(--transition-speed) ease;
}

.message-modal.active .message-content {
  transform: translateY(0);
}

.message-modal.success .message-content {
  border-top: 4px solid var(--success-color);
}

.message-modal.error .message-content {
  border-top: 4px solid #d32f2f;
}

.message-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.close-message {
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.close-message:hover {
  background-color: var(--dark-color);
  transform: translateY(-2px);
}

/* GENERAL SECTIONS  */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 1rem auto 0;
}

/* ABOUT US SECTION */
.about-section {
  background-color: var(--success-color);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.29' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 5rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.mission_list,
.values-list,
.policies-list {
  list-style: none;
  padding-left: 0;
}

.mission_list li,
.values-list li,
.policies-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.5;
}

.mission_list li::before{
  content: "•";
  color: var(--success-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.values-list li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.policies-list li::before {
  content: "•";
  color: var(--success-color);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* CONTACT SECTION */
.contact-section {
  padding: 5rem 2rem;
  background-color: var(--light-color);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* CONTACT METHOD */
.contact-method {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
}

/* CONTACT SVG ICONS */
.contact-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.contact-method h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-method p {
  margin: 0.3rem 0;
  line-height: 1.5;
  color: var(--dark-color);
}

.contact-method a {
  color: var(--dark-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

/* FOR LIGHT VERSION */
.contact-method--light .contact-icon {
  color: var(--primary-color);
}

/* SOCIAL MEDIA */
.social-media {
  margin-top: 1rem;
}

.social-media h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 1.4rem;
}

.social-icons .icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--text-on-dark);
  transform: translateY(-3px);
}

/* CONTAXTUAL VARIANTS */
.social-icons--light a {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

.social-icons--light a:hover {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.social-icons--dark a {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
}

.social-icons--dark a:hover {
  background-color: var(--accent-color);
  color: var(--text-on-dark);
}

/*  FOOTER */
.main-footer {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  padding: 3rem 0 0;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

/* BRAND SECTION */
.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: "Book Antiqua", serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--text-on-dark);
}

.footer-tagline {
  font-family: "Book Antiqua", serif;
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0.9;
  letter-spacing: 0.6px;
  color: var(--text-on-dark);
}

.footer-description {
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 1rem;
  color: var(--text-on-dark);
}

/* COMMON SECTION STYLES */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: var(--text-on-dark);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

/* LINKS SECTION */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
  opacity: 0.8;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-color);
  opacity: 1;
}

/* CONTACT FOOTER STYLES */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
}

.footer-contact-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.footer-contact a {
  opacity: 0.9;
  transition: all var(--transition-speed) ease;
}

/* FOOTER BOTTOM */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
  color: var(--text-on-dark);
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity var(--transition-speed) ease;
}

.legal-links a:hover {
  opacity: 1;
  color: var(--accent-color);
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.4;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: auto;
  overscroll-behavior: contain;
  animation: modalFadeIn 0.3s ease-out forwards;
}

.modal-content {
  padding-top: 30px;
  background: var(--text-on-dark);
  margin: 5% auto;
  padding: 30px;
  width: 85%;
  max-width: 900px;
  min-height: 70vh;
  max-height: 90vh;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal.top-close {
  display: none;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-modal:hover,
.close-modal:focus {
  background: var(--secondary-color);
  transform: scale(1.1) translateY(-2px);
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.close-icon {
  width: 20px;
  height: 20px;
  fill: white;
}

.modal iframe {
  flex: 1;
  width: 100%;
  min-height: 60vh;
  border: none;
  border-radius: 8px;
  background: white;
  margin-top: 15px;
  box-shadow: inset 0 0 8px rgba(156, 39, 176, 0.2);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 0;
  margin-top: 20px;
  border-top: 1px solid #eee;
}

.close-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ANIMATION */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TERMS BANNER */
.terms-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: var(--text-on-dark);
  padding: 15px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.5s ease-out;
  opacity: 95%;
}

.terms-banner p {
  margin: 0 auto;
  max-width: 800px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.terms-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.terms-button {
  background: var(--accent-color);
  color: var(--text-on-dark);
  border: none;
  padding: 8px 20px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.terms-button:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* ANIMATION */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
    --header-height-scrolled: 50px;
  }
  /* HEADER AND NAVEGATION */
  .main-header {
    padding: 0.8rem 1.5rem;
  }

  .logo {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .logo-img {
    height: 40px;
  }

  .logo-main {
    font-size: 1.5rem;
  }

  .logo-tagline,
  .tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo-mobile {
    display: block;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--text-on-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
  }

  /* HERO SECTION */
  .hero {
    height: calc(100vh - var(--header-height-scrolled));
    min-height: 300px;
  }

  .hero-content {
    padding: 0 15px;
    transform: translateY(0);
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .btn-hero {
    padding: 10px 25px;
    font-size: 1rem;
  }

  /* GENERAL SECTIONS */
  .section,
  .about-section,
  .services-section,
  .contact-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  /* SERVICE FORM */
  .service-form-modal {
    padding: 20px;
    width: 95%;
    max-width: 100%;
    border-radius: 0;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
  }

    .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
  }

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

  .btn-submit,
  .btn-cancel {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .close-form {
    top: 10px;
    right: 10px;
    font-size: 24px;
  }

  .message-content {
    padding: 2rem 1.5rem;
    width: 90%;
  }

  .message-content p {
    font-size: 1rem;
  }

  .close-message {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  /* ABOUT SECTION */
  .team-section {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .team-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  /* CONTACT */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    min-height: 350px;
    order: -1;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    margin-bottom: 1rem;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-content {
    width: 90%;
    margin: 10% auto;
    padding: 20px;
    min-height: 80vh;
    max-height: 95vh;
  }

  .modal iframe {
    min-height: 70vh;
  }

  .close-btn {
    padding: 10px 25px;
  }

  .terms-banner {
    padding: 12px;
    text-align: left;
  }

  .terms-banner p {
    margin-bottom: 10px;
  }

  .terms-button {
    display: block;
    width: calc(100% - 40px);
    margin: 10px auto 0;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  /* HEADER AND NAVEGATION */
  .main-header {
    padding: 0.6rem 1rem;
  }

  .logo {
    font-size: 1.7rem;
  }

  .logo-img {
    height: 35px;
  }

  .logo-main {
    font-size: 1.3rem;
  }

  .logo-tagline,
  .tagline {
    font-size: 0.7rem;
  }

  .nav-container {
    padding: 0 10px;
  }

  .nav-list {
    width: 90%;
    padding: 70px 20px 20px;
  }

  /* HERO SECTION */
  .hero {
    min-height: 250px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .btn-hero {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  /*  GENERAL SECTIONS */
  .section,
  .about-section,
  .services-section,
  .contact-section {
    padding: 2rem 0.8rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  /* SERVICES */
  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .service-features li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
  }

  /* FORM */
  .service-form-modal {
    width: 100%;
    border-radius: 0;
    padding: 1.2rem;
    max-height: 100vh;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  /* FOOTER */
  .footer-container {
    padding: 0 1rem;
    gap: 1.8rem;
  }

  .footer-logo {
    font-size: 1.4rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .footer-bottom p,
  .legal-link {
    font-size: 0.8rem;
  }

  /* CONTACT */
  .contact-method h4 {
    font-size: 1.1rem;
  }

  .contact-method p,
  .contact-method a {
    font-size: 0.9rem;
  }

  .map-container {
    height: 250px;
  }
}

@media (max-width: 400px) {
  /* HEADER AND NAVEGATION */
  .header {
    padding: 0.5rem 0.8rem;
    height: 60px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    height: 30px;
  }

  .logo-main {
    font-size: 1.1rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
    display: none;
  }

  .nav-list {
    width: 100%;
    max-width: none;
    padding: 60px 15px 15px;
  }

  /* HERO SECTION */
  .hero {
    min-height: 200px;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .hero-text {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .btn-hero {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  /* GENERAL SECTIONS */
  .section,
  .about-section,
  .services-section,
  .contact-section {
    padding: 1.5rem 0.5rem;
  }

  .section-title h2 {
    font-size: 1.3rem;
  }

  .section-title p {
    font-size: 0.8rem;
  }

  /* SERVICES */
  .services-grid {
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.2rem 0.8rem;
    border-radius: 8px;
  }

  .service-icon {
    font-size: 2.2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-features li {
    font-size: 0.8rem;
    padding-left: 1.2rem;
  }

  .btn-service {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  /* FORM */
  .service-form-modal h3 {
    font-size: 1.2rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.6rem;
  }

  .btn-submit {
    padding: 0.8rem;
  }

  /* FOOTER */
  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-section-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .social-link {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  /* CONTACT */
  .contact-method {
    gap: 0.8rem;
  }

  .contact-icon {
    font-size: 1.2rem;
  }

  .map-container {
    height: 200px;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  h1,
  h2,
  h3 {
    line-height: 1.3;
  }

  p,
  li,
  a {
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
    --header-height-scrolled: 50px;
  }
  /* HEADER & NAVIGATION */
  .header {
    padding: 0.6rem 1rem;
    height: 70px;
  }

  .logo img {
    height: 32px;
  }

  .logo-main {
    font-size: 1.2rem;
  }

  .logo-tagline {
    font-size: 0.65rem;
    opacity: 0.9;
  }

  .nav-list {
    padding: 70px 20px 20px;
  }

  /* HERO SECTION */
  .hero {
    min-height: 220px;
  }

  .hero-title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
  }

  .btn-hero {
    padding: 7px 18px;
  }

  /* GENERAL SECTIONS */
  .section,
  .about-section,
  .services-section,
  .contact-section {
    padding: 1.8rem 0.8rem;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .section-title p {
    font-size: 0.85rem;
  }

  /* SERVICES */
  .service-card {
    padding: 1.3rem 1rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-features li {
    font-size: 0.85rem;
  }

  .btn-service {
    padding: 0.75rem;
  }

  /* CONTACT */
  .contact-method {
    gap: 0.7rem;
  }

  .contact-icon {
    font-size: 1.3rem;
  }

  .map-container {
    height: 220px;
  }

  /* FOOTER */
  .footer-logo {
    font-size: 1.3rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }

  .footer-link,
  .legal-link {
    font-size: 0.82rem;
  }

  /* FORM MODAL */
  .service-form-modal {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.65rem;
  }

  /* UTILITY ADJUSTMENTS */
  .btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .modal-content {
    width: 95%;
    padding: 15px;
    min-height: 85vh;
    margin: 5% auto;
  }

  .modal iframe {
    min-height: 75vh;
  }

  .close-btn {
    width: 100%;
    padding: 12px;
  }
}

.construction-container {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--primary-color);
  color: var(--text-on-dark);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  padding: 2rem;
}

.construction-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.construction-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}