@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  background-color: #050505;
  color: #FAFAFA;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 768px) {
  .header-inner { height: 96px; }
}

.logo img {
  height: 56px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img { height: 64px; }
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-item {
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 256px;
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: all 0.3s;
}

.dropdown-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Header Actions */
.header-actions {
  display: none;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.3s;
}

.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.3s;
}

.phone-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.6), rgba(5,5,5,0.7), #050505);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 1rem;
}

.hero-subtitle {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 6rem; }
}

.hero-description {
  color: #fff;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; justify-content: center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

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

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value { font-size: 3rem; }
}

.stat-label {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Services Section */
.services {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .services { padding: 8rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 6rem; }
}

.section-subtitle {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

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

@media (min-width: 1024px) {
  .section-title { font-size: 3.75rem; }
}

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

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

.service-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: border-color 0.5s;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0A, transparent, transparent);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #fff;
  margin-bottom: 1.5rem;
}

.service-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.service-link svg {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.service-card:hover .service-link svg {
  transform: translateX(0.5rem);
}

/* Why Us Section */
.why-us {
  padding: 6rem 0;
  background: #0A0A0A;
}

@media (min-width: 768px) {
  .why-us { padding: 8rem 0; }
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

.why-us-content h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.why-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .why-us-content h2 { font-size: 3rem; }
}

.why-us-content p {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.values-list {
  list-style: none;
}

.values-list li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.values-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-right: 1rem;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.why-us-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: #fff;
  padding: 2rem;
}

.why-us-badge .badge-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.why-us-badge .badge-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .cta { padding: 8rem 0; }
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta h2 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .cta h2 { font-size: 3.75rem; }
}

.cta p {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}

/* Footer */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer { padding: 6rem 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand img {
  height: 64px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-products ul {
  list-style: none;
}

.footer-links li,
.footer-products li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-products a {
  color: #fff;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-products a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
}

.footer-contact-item a {
  color: #fff;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-partners {
  display: flex;
  gap: 1.5rem;
}

.footer-partners span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.whatsapp-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
  transition: transform 0.3s, background 0.3s;
}

.whatsapp-btn a:hover {
  background: #16a34a;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  fill: #fff;
}

/* Page Hero */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.page-hero.with-bg {
  position: relative;
}

.page-hero.with-bg .page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero.with-bg .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero.with-bg .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.9), #050505);
}

.page-hero-content {
  position: relative;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.back-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.back-link svg {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.page-subtitle {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .page-title { font-size: 4.5rem; }
}

.page-description {
  color: #fff;
  font-size: 1.125rem;
  max-width: 48rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .page-description { font-size: 1.25rem; }
}

/* Product Section */
.product-section {
  padding: 4rem 0;
  background: #0A0A0A;
}

@media (min-width: 768px) {
  .product-section { padding: 6rem 0; }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.product-image {
  display: flex;
  justify-content: center;
}

.product-image img {
  max-height: 450px;
  width: auto;
  object-fit: contain;
}

.features-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .features-title { font-size: 1.875rem; }
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.feature-text {
  color: #fff;
  line-height: 1.75;
}

/* Specs Section */
.specs-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .specs-section { padding: 6rem 0; }
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

.specs-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.specs-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .specs-title { font-size: 1.875rem; }
}

.specs-table {
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
  color: #fff;
}

.spec-value {
  color: #fff;
  font-weight: 500;
}

.variants-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.variants-list {
  list-style: none;
}

.variants-list li {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 0.75rem;
}

.variants-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* Form */
.form-container {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

@media (min-width: 768px) {
  .form-container { padding: 2.5rem; }
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .form-title { font-size: 1.875rem; }
}

.form-product {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

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

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

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

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  padding: 1.25rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: rgba(255, 255, 255, 0.9);
}

.form-submit svg {
  width: 20px;
  height: 20px;
}

/* Contact Page */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .contact-cards { grid-template-columns: repeat(4, 1fr); }
}

.contact-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  transition: border-color 0.5s;
}

@media (min-width: 768px) {
  .contact-card { padding: 2rem; }
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card-label {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-card-value {
  color: #fff;
  font-size: 1.125rem;
}

.contact-card-value a {
  transition: color 0.3s;
}

.contact-card-value a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-section {
  padding: 4rem 0;
  background: #0A0A0A;
}

@media (min-width: 768px) {
  .contact-form-section { padding: 6rem 0; }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

.whatsapp-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
}

@media (min-width: 768px) {
  .whatsapp-card { padding: 2.5rem; }
}

.whatsapp-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
  fill: #fff;
}

.whatsapp-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.whatsapp-header p {
  color: #fff;
}

.whatsapp-link {
  display: block;
  width: 100%;
  background: #22c55e;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.whatsapp-link:hover {
  background: #16a34a;
}

/* Accessories Page */
.accessories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0;
}

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

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

.accessory-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  transition: border-color 0.5s;
}

.accessory-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.accessory-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.accessory-card:hover .accessory-icon {
  border-color: rgba(255, 255, 255, 0.4);
}

.accessory-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.accessory-card:hover .accessory-icon svg {
  color: #fff;
}

.accessory-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .accessory-title { font-size: 1.5rem; }
}

.accessory-description {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.accessory-list {
  list-style: none;
}

.accessory-list li {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.accessory-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* About Page Specific */
.about-story {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .about-story { padding: 8rem 0; }
}

.about-values {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .about-values { padding: 8rem 0; }
}

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

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

.value-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  transition: border-color 0.5s;
}

@media (min-width: 768px) {
  .value-card { padding: 2.5rem; }
}

.value-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.value-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .value-title { font-size: 1.5rem; }
}

.value-description {
  color: #fff;
  line-height: 1.75;
}

/* Feronerie Page */
.feronerie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0;
}

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

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

.feronerie-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  transition: border-color 0.5s;
}

.feronerie-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.feronerie-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.feronerie-card:hover .feronerie-icon {
  border-color: rgba(255, 255, 255, 0.4);
}

.feronerie-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.feronerie-card:hover .feronerie-icon svg {
  color: #fff;
}

.feronerie-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feronerie-description {
  color: #fff;
  line-height: 1.75;
}

/* Utility */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* Sticky Form */
@media (min-width: 1024px) {
  .sticky-form {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}

/* Mobile Menu (simplified) */
.mobile-lang {
  display: flex;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-lang { display: none; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator-inner {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Haustur specific */
.haustur-image-section {
  padding: 4rem 0;
  background: #0A0A0A;
}

@media (min-width: 768px) {
  .haustur-image-section { padding: 6rem 0; }
}

.haustur-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .haustur-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.haustur-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.haustur-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .haustur-text h2 { font-size: 2.5rem; }
}

.haustur-text p {
  color: #fff;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 4rem 0;
}

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

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.benefit-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: #fff;
  font-size: 0.875rem;
}

/* Feature lists for Haustur */
.feature-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 4rem 0;
  background: #0A0A0A;
}

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

.feature-column h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .feature-column h2 { font-size: 1.875rem; }
}

.feature-column ul {
  list-style: none;
}

.feature-column li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-column .check-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-column .check-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.feature-column span {
  color: #fff;
}

/* Form Section centered */
.form-section-centered {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .form-section-centered { padding: 6rem 0; }
}

.form-section-centered .container {
  max-width: 48rem;
}

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

.form-section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .form-section-header h2 { font-size: 2.5rem; }
}

.form-section-header p {
  color: #fff;
}



/* Contact Cards Centered */
.contact-cards-centered {
  padding: 4rem 0;
}

.contact-cards-centered .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-cards-centered .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-cards-centered .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card-new {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: border-color 0.5s;
}

.contact-card-new:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-card-new .icon-wrapper {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.contact-card-new .icon-wrapper svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card-new .card-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-card-new .card-value {
  color: #fff;
  font-size: 1.125rem;
}

.contact-card-new .card-value a {
  color: #fff;
  transition: opacity 0.3s;
}

.contact-card-new .card-value a:hover {
  opacity: 0.8;
}

/* Contact Form Section 2 Column */
.contact-form-wrapper {
  padding: 4rem 0 6rem;
  background: #0A0A0A;
}

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

@media (min-width: 1024px) {
  .contact-form-2col {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* WhatsApp Card Styled */
.whatsapp-card-styled {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.whatsapp-card-styled .card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.whatsapp-card-styled .wa-icon {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-card-styled .wa-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.whatsapp-card-styled h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.whatsapp-card-styled p {
  color: #fff;
}

.whatsapp-card-styled .wa-link {
  display: block;
  width: 100%;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.whatsapp-card-styled .wa-link:hover {
  background: #128C7E;
}

/* Location Card */
.location-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.location-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}



/* About Page Styles */
.about-hero {
  position: relative;
  padding: 8rem 0 5rem;
}

@media (min-width: 768px) {
  .about-hero {
    padding: 10rem 0 8rem;
  }
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.9), #050505);
}

.about-story {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .about-story {
    padding: 8rem 0;
  }
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-story-content {
  order: 2;
}

@media (min-width: 1024px) {
  .about-story-content {
    order: 1;
  }
}

.about-story-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .about-story-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-story-content h2 {
    font-size: 3rem;
  }
}

.about-story-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-story-image {
  position: relative;
  order: 1;
}

@media (min-width: 1024px) {
  .about-story-image {
    order: 2;
  }
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  padding: 1.5rem 2rem;
}

.about-badge-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
}

@media (min-width: 768px) {
  .about-badge-value {
    font-size: 2.25rem;
  }
}

.about-badge-label {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-mission {
  padding: 6rem 0;
  background: #0A0A0A;
}

@media (min-width: 768px) {
  .about-mission {
    padding: 8rem 0;
  }
}

.about-mission-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-mission-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-mission-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-mission-content h2 {
    font-size: 3rem;
  }
}

.about-mission-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-values {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .about-values {
    padding: 8rem 0;
  }
}

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

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

.value-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
  transition: border-color 0.5s;
}

.value-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.value-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon svg {
  color: rgba(255, 255, 255, 0.7);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .value-card h3 {
    font-size: 1.5rem;
  }
}

.value-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.about-partners {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .about-partners {
    padding: 8rem 0;
  }
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem 5rem;
}

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

.partner-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .partner-name {
    font-size: 3rem;
  }
}

.partner-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.location-card .map-placeholder {
  aspect-ratio: 16/9;
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.location-card .map-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.location-card .map-placeholder p {
  color: #fff;
}

/* Working Hours Card */
.hours-card {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
}

.hours-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hours-card .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-card .day {
  color: rgba(255, 255, 255, 0.6);
}

.hours-card .time {
  color: #fff;
  font-weight: 500;
}

.hours-card .closed {
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  z-index: 40;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-item {
  display: block;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

.mobile-nav-item:hover {
  color: rgba(255,255,255,0.8);
}

.mobile-dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  padding-left: 1rem;
  background: rgba(255,255,255,0.02);
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-dropdown-content a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  text-decoration: none;
}

.mobile-dropdown-content a:hover {
  color: #fff;
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.lang-btn {
  padding: 0.375rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.lang-btn:hover, .lang-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.mobile-lang-selector {
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
}

.mobile-lang-selector .lang-btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
}

/* Mobile Header Actions */
.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  .mobile-header-actions {
    display: flex;
  }
  .header-actions {
    display: none;
  }
}

.mobile-lang-btn {
  padding: 8px 12px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.mobile-lang-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Lang buttons improvements */
.lang-btn {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn:hover, .lang-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}
