* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #fff3df;
  --beige: #d5c1b8;
  --mocha: #644d42;
  --choco: #26140c;
  --accent: #d5c1b8;
  --text-dark: #26140c;
  --text-light: #644d42;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--choco);
  z-index: 1000;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 20px rgba(38, 20, 12, 0.15);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--cream);
  text-transform: lowercase;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-selector a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.language-selector a:hover {
  color: var(--cream);
  border-color: var(--beige);
}

.language-selector a.active {
  color: var(--cream);
  border-color: var(--cream);
  background: rgba(255, 243, 223, 0.1);
}

/* Hero Section */
.hero {
  margin-top: 90px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1560750588-73207b1ef5b8?w=1920&q=80")
    center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 243, 223, 0.85) 0%,
    rgba(213, 193, 184, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 4rem 2rem;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 300;
  letter-spacing: 20px;
  color: var(--choco);
  margin-bottom: 1.5rem;
  text-transform: lowercase;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  word-break: keep-all;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--mocha);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: var(--mocha);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--mocha);
  transition: all 0.4s ease;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(38, 20, 12, 0.2);
}

.cta-button:hover {
  background: var(--choco);
  border-color: var(--choco);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(38, 20, 12, 0.3);
}

/* Image Gallery Section */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -5px;
  width: 100%;
  max-width: 100vw;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(38, 20, 12, 0.5) 0%,
    transparent 60%
  );
  opacity: 1;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 0;
}

/* Sections */
section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  text-align: center;
  color: var(--choco);
  margin-bottom: 4rem;
  letter-spacing: 5px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: -2rem auto 4rem;
  line-height: 1.8;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: grid;
  grid-template-rows: 300px 1fr;
}

.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
  filter: brightness(1);
}

.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(38, 20, 12, 0.3) 100%
  );
}

.service-content {
  padding: 2.5rem;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--mocha);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  z-index: 10;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(38, 20, 12, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--choco);
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.9;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Prices Section */
.prices-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 3rem;
}

.price-category {
  background: white;
  padding: 3rem;
  border: 1px solid var(--beige);
}

.price-category h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--choco);
  margin-bottom: 2rem;
  letter-spacing: 3px;
  text-align: center;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(213, 193, 184, 0.3);
}

.price-item:last-child {
  border-bottom: none;
}

.price-name {
  color: var(--text-dark);
  font-size: 0.95rem;
  flex: 1;
  padding-right: 1rem;
}

.price-value {
  color: var(--mocha);
  font-weight: 500;
  white-space: nowrap;
}

.price-dual {
  display: flex;
  gap: 1rem;
}

.price-original {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.price-discounted {
  color: var(--mocha);
  font-weight: 600;
}

/* Kundenkarte Section */
.kundenkarte-box {
  background: linear-gradient(135deg, var(--mocha) 0%, var(--choco) 100%);
  color: var(--cream);
  padding: 4rem;
  text-align: center;
  margin: 4rem auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.kundenkarte-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 243, 223, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.kundenkarte-content {
  position: relative;
  z-index: 1;
}

.kundenkarte-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.kundenkarte-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.kundenkarte-price {
  font-size: 3rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin: 2rem 0;
  letter-spacing: 3px;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 243, 223, 0.2);
  font-size: 1rem;
  font-weight: 300;
}

.benefits-list li::before {
  content: "✦ ";
  margin-right: 1rem;
  color: var(--beige);
}

/* Before/After Section */
.before-after-section {
  background: white;
  padding: 6rem 2rem;
  margin: 6rem 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.before-after-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--beige);
  background: var(--cream);
}

.before-after-images {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.before-after-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-label {
  padding: 1.5rem;
  text-align: center;
  background: white;
}

.before-after-label h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--choco);
  margin-bottom: 0.5rem;
}

.before-after-label p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 2rem;
  background: var(--cream);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 3rem 2.5rem;
  border-left: 4px solid var(--mocha);
  box-shadow: 0 10px 30px rgba(38, 20, 12, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(38, 20, 12, 0.12);
}

.testimonial-stars {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 500;
  color: var(--choco);
  font-size: 0.95rem;
}

/* Interactive Stats */
.stats-section {
  background: linear-gradient(135deg, var(--mocha) 0%, var(--choco) 100%);
  color: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 3rem;
  border: 1px solid var(--beige);
}

.contact-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(213, 193, 184, 0.3);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--choco);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--mocha);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.map-container {
  height: 500px;
  border: 1px solid var(--beige);
  background: white;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--choco);
  color: var(--cream);
  padding: 4rem 2rem 3rem;
  margin-top: 6rem;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 3rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: var(--cream);
}

.footer-section p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 300;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(188, 24, 136, 0.3);
}

.instagram-button span {
  font-size: 1.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 243, 223, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.contact-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: white;
  border: none;
}

.whatsapp-button {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.phone-button {
  background: linear-gradient(135deg, var(--mocha) 0%, var(--choco) 100%);
}

.phone-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(100, 77, 66, 0.5);
}

.contact-button-label {
  position: absolute;
  right: 75px;
  background: white;
  color: var(--choco);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-button:hover .contact-button-label {
  opacity: 1;
  right: 70px;
}

.floating-contact-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--choco);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--mocha);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-content {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .mobile-menu-toggle {
    display: block;
    order: -1;
  }

  .nav-right {
    margin-left: auto;
  }

  .logo {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  nav {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 1023px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 3rem;
    letter-spacing: 8px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    grid-template-rows: 250px 1fr;
  }

  .service-image {
    height: 250px;
  }

  .service-content {
    padding: 2rem 1.5rem;
  }

  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .prices-container {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .kundenkarte-box {
    padding: 2rem 1.5rem;
  }

  .kundenkarte-box h3 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .kundenkarte-price {
    font-size: 2.5rem;
  }

  .before-after-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.85rem;
  }

  .nav-right {
    gap: 1rem;
  }

  .language-selector {
    order: -1;
  }

  .price-category {
    padding: 2rem 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 0.8rem;
  }

  .contact-button {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .contact-button-label {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 5px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .kundenkarte-box h3 {
    font-size: 1.6rem;
  }

  .kundenkarte-price {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .cta-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .language-selector a {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .floating-contact {
    bottom: 15px;
    right: 15px;
  }

  .contact-button {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}
