
:root {
  --primary: #3B6064;
  --secondary: #F9C846;
  --accent: #D57A66;
  --bg-light: #F8F9FA;
  --bg-dark: #E9ECEF;
  --text-dark: #212529;
  --text-light: #F8F9FA;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: var(--primary);
}

.iti { 
  width: 100%; 
}


.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
}

.uk-navbar-nav > li > a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
  text-transform: none;
  font-size: 1.1rem;
}

.uk-navbar-nav > li:hover > a, 
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-active > a {
  color: var(--accent);
}


.hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
  color: var(--text-light);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(59, 96, 100, 0.6);
  z-index: 1;
}

.parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-cta {
  background-color: var(--secondary);
  color: var(--text-dark);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: transform 0.2s, background-color 0.2s;
}

.hero-cta:hover {
  background-color: #e9b835;
  transform: translateY(-2px);
  color: var(--text-dark);
  text-decoration: none;
}


.section-heading {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 600;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  margin-top: 15px;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-dark);
}


.feature-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card-img-container {
  height: 220px;
  overflow: hidden;
}

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

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

.feature-card-content {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.feature-card-content p {
  color: #6c757d;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s;
}

.card-link:hover {
  color: #c56c59;
  text-decoration: none;
}


.product-card {
  text-align: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

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

.product-img {
  height: 250px;
  overflow: hidden;
}

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

.product-card:hover .product-img img {
  transform: scale(1.07);
}

.product-details {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}


.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

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

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}

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

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #325256;
}


.site-footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-section h4 {
  color: var(--secondary);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-link {
  color: var(--text-light);
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.6rem;
}

.footer-link:hover {
  color: var(--secondary);
  text-decoration: none;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-consent.visible {
  display: block;
}

.cookie-settings-button {
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-decoration: underline;
}

.cookie-floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-settings-modal.visible {
  display: flex;
}

.cookie-settings-content {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dee2e6;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category-title {
  font-weight: 600;
  margin: 0;
}


.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.cookie-category-description {
  margin-top: 0.8rem;
  color: #6c757d;
  font-size: 0.95rem;
}


@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-img-container {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .feature-card,
  .product-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}


.map-container {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}


.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


.legal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  margin-bottom: 3rem;
}

.legal-content h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-date {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 2rem;
  display: block;
}


.thank-you-container {
  text-align: center;
  padding: 5rem 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.thank-you-message {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #6c757d;
}

.back-btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.back-btn:hover {
  background-color: #325256;
  color: white;
}


.chat-container {
  max-width: 900px;
  margin: 0 auto;
}

.chat-message {
  display: flex;
  margin-bottom: 20px;
}

.chat-message-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 80%;
}

.chat-message.left {
  justify-content: flex-start;
}

.chat-message.right {
  justify-content: flex-end;
}

.chat-message.left .chat-message-content {
  background-color: var(--bg-dark);
}

.chat-message.right .chat-message-content {
  background-color: var(--primary);
  color: white;
}

.chat-message.right .chat-message-content h3 {
  color: white;
}


.corporate-header {
  background-color: #3E5C76;
  color: white;
  padding: 15px 0;
}

.corporate-button {
  background-color: #3E5C76;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  transition: background-color 0.2s;
}

.corporate-button:hover {
  background-color: #34495e;
  color: white;
}

.corporate-card {
  border: 1px solid #e1e5eb;
  border-radius: 4px;
  background-color: white;
}

.corporate-divider {
  border-top: 1px solid #e1e5eb;
  margin: 2rem 0;
}