/* Variables */
:root {
  --primary-blue: #2B5F9B;
  --primary-green: #3A9678;
  --accent-orange: #E57C23;
  --light-yellow: #F9D949;
  --turquoise: #65C1BE;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --medium-gray: #E5E9F0;
  --soft-black: #333333;
  --dark-gray: #4F5A65;
  --medium-text-gray: #717D8A;
  
  --heading-font: 'Barlow', sans-serif;
  --body-font: 'PT Serif', serif;
  
  --section-spacing: 5rem;
  --element-spacing: 2rem;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: var(--body-font);
  color: var(--soft-black);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-green);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.btn {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

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

.btn-primary:hover {
  background-color: #234c7d;
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: #2e7b61;
  color: var(--white);
}

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

.btn-accent:hover {
  background-color: #d26a1c;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.section {
  padding: var(--section-spacing) 0;
}

.section-title {
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  border-radius: 2px;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Utility Classes */
.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 2.5rem;
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.bg-secondary {
  background-color: var(--primary-green);
  color: var(--white);
}

.bg-accent {
  background-color: var(--accent-orange);
  color: var(--white);
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.navbar-logo {
  height: 50px;
}

.navbar-logo img {
  height: 100%;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

.navbar-nav {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: end;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-blue);
}

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

.nav-link.active {
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 95, 155, 0.85), rgba(58, 150, 120, 0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--body-font);
  font-weight: 400;
}

/* Feature Boxes */
.feature-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

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

/* Info Cards */
.info-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card-img {
  height: 200px;
  overflow: hidden;
}

.info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card:hover .info-card-img img {
  transform: scale(1.05);
}

.info-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.info-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-card-text {
  margin-bottom: 1.5rem;
}

.info-card-footer {
  margin-top: auto;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
  padding: 4rem 0;
  border-radius: var(--border-radius);
  text-align: center;
}

.cta-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-subtitle {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: var(--white);
  color: var(--primary-blue);
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-btn:hover {
  background-color: var(--light-yellow);
  color: var(--soft-black);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--dark-gray);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(43, 95, 155, 0.2);
}

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

.form-submit {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-family: var(--heading-font);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background-color: #234c7d;
}

/* Footer */
.footer {
  background-color: var(--soft-black);
  color: var(--white);
  padding-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-green);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: var(--medium-gray);
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: var(--primary-green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  background-color: #252525;
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom-text {
  color: var(--medium-gray);
  margin: 0;
  font-size: 0.9rem;
}

/* Utilities for content layout */
.diagonal-section {
  position: relative;
  padding: 6rem 0;
  margin: 6rem 0;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-gray);
  transform: skewY(-5deg);
  transform-origin: top left;
  z-index: -1;
}

.asymmetric-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.asymmetric-left {
  grid-column: span 7;
}

.asymmetric-right {
  grid-column: span 5;
}

.asymmetric-small {
  grid-column: span 4;
}

.asymmetric-medium {
  grid-column: span 8;
}

.card-overlap {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.bg-pattern {
  position: relative;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
}

.shadow-box {
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  padding: 2rem;
  background-color: var(--white);
}

.icon-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.icon-box-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.icon-box-content {
  flex-grow: 1;
}

.icon-box-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-text {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.cookie-settings-close:hover {
  color: var(--primary-blue);
}

.cookie-settings-title {
  margin-bottom: 1.5rem;
}

.cookie-setting-group {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
}

.cookie-setting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-setting-title {
  font-weight: 700;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--medium-gray);
  transition: 0.4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary-green);
}

input:checked + .cookie-slider:before {
  transform: translateX(30px);
}

.cookie-setting-description {
  font-size: 0.9rem;
  color: var(--medium-text-gray);
}

.cookie-settings-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  padding-top: 70px;
  text-align: center;
}

.thanks-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.thanks-title {
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.thanks-text {
  margin-bottom: 2rem;
}

.thanks-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.thanks-btn:hover {
  background-color: #234c7d;
  color: var(--white);
}

/* Map styles */
.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.navbar-collapse {
  flex-basis: content;
}

@media (max-width: 991px) {
  .asymmetric-container {
    display: block;
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-collapse.show {
    height: auto;
  }
  
  .navbar-nav {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .nav-item {
    margin: 0;
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .diagonal-section {
    padding: 4rem 0;
    margin: 4rem 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* International Telephone Input */
.iti {
  width: 100%;
}