/* assets/css/main.css 
   2026 Standartlarında Kurumsal Açık Tema
   Spagetti CSS yok, mor ve eski tip ağır gölgeler yok.
*/

:root {
  --color-primary: #876EFB;
  /* Gece siyahı */
  --color-secondary: #3f3f46;
  --color-accent: #2563eb;
  /* Elektrik mavisi (modern premium) */
  --color-bg: #F8F9FC;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;

  --color-text-dark: #1e293b;
  --color-text-muted: #64748b;

  --font-family: 'Urbanist', sans-serif;
  --rounded-base: 6px; /* Daha keskin 8px yerine */
  --rounded-lg: 10px;  /* 16px yerine 10px - Premium keskinlik */

  --transition-speed: 0.3s;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 180ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(root) {
  animation-name: page-fade-out;
}

::view-transition-new(root) {
  animation-name: page-fade-in;
}

@keyframes page-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.985;
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0.985;
  }

  to {
    opacity: 1;
  }
}

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

html {
  background-color: var(--color-bg);
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-content {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1280px;
  /* Premium optimal reading and grid scope */
  margin: 0 auto;
}

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

.section {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-base);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #0f172a;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: #0369a1;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

/* Navbar - 3-column: Logo | Centered Links | CTA */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 4vw, 4rem) 0 clamp(1.5rem, 4vw, 4rem);
  background-color: var(--color-bg);
}

.navbar {
  position: relative;
  overflow: hidden;
  background: #ffffff url("../img/bg.webp") center / cover no-repeat;
  border-radius: var(--rounded-lg);
  box-shadow: 0 18px 34px -26px rgba(15, 23, 42, 0.52);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  max-width: 100%;
  width: 100%;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

.nav-brand {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 50px;
}

.nav-logo {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Centered navigation links */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(1.25rem, 2vw, 2.2rem);
  z-index: 1;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* Right side: CTA + Hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  z-index: 2;
}

.nav-cta {
  background-color: #ffffff;
  color: var(--color-primary) !important;
  padding: 0.65rem 1.5rem;
  border-radius: var(--rounded-base);
  font-weight: 700 !important;
  font-size: 0.98rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background-color: #f8fafc;
  color: var(--color-primary) !important;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rounded-base);
  cursor: pointer;
  padding: 8px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--color-primary);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-brand {
  min-width: 0;
  max-width: calc(100% - 56px);
}

.mobile-menu-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(170px, 100%);
  max-height: 42px;
  object-fit: contain;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--rounded-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex: 1;
  overflow-y: auto;
}

.mobile-menu-links a {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  padding-left: 2rem;
}

.mobile-menu-links .mobile-cta {
  margin: 1.5rem;
  padding: 0.85rem 1.5rem;
  background-color: #ffffff;
  color: var(--color-primary);
  border-radius: var(--rounded-base);
  font-weight: 600;
  text-align: center;
  border-bottom: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-links .mobile-cta:hover {
  background-color: #f8fafc;
  color: var(--color-primary);
  padding-left: 1.5rem;
}

/* Mobile Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Responsive: show hamburger, hide desktop nav */
@media (max-width: 980px) {
  .navbar-wrapper {
    padding: 0;
    background: #ffffff url("../img/bg.webp") center / cover no-repeat;
  }

  .navbar {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .navbar .container {
    padding: 0 1rem;
    height: 78px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo {
    max-height: 38px;
    max-width: 140px;
  }

  .mobile-menu-logo {
    max-width: min(150px, 100%);
    max-height: 38px;
  }
}

/* Slider / Hero Area */
.hero {
  position: relative;
  background-color: var(--color-primary);
  color: #fff;
  overflow: hidden;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-border);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Global Modern Cards */
.card {
  background-color: var(--color-surface);
  border: none;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
}

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

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

.card-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

/* Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 360px;
}

.service-card {
  position: relative;
  display: block;
  min-height: 360px;
  border-radius: 1.25rem;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
  box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.38);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:nth-child(1),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 2;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px -30px rgba(15, 23, 42, 0.48);
}

.service-card:active {
  transform: translateY(-2px);
}

.service-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(135, 110, 251, 0.22), 0 24px 55px -30px rgba(15, 23, 42, 0.48);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.32) 42%, rgba(15, 23, 42, 0.58) 100%);
  z-index: 1;
}

.service-card-media,
.service-card-media img {
  width: 100%;
  height: 100%;
}

.service-card-media {
  position: absolute;
  inset: 0;
}

.service-card-media img {
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  max-width: min(86%, 30rem);
}

.service-card-title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}

.service-card-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(280px, auto);
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 1;
    min-height: 320px;
  }

  .service-card-content {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 1ms;
  }

  .service-card,
  .service-card-media img {
    transition: none;
  }

  .service-card:hover,
  .service-card:active {
    transform: none;
  }

  .service-card:hover .service-card-media img {
    transform: none;
  }
}

/* Footer */
footer {
  position: relative;
  overflow: hidden;
  background: #ffffff url("../img/bg.webp") center / cover no-repeat;
  color: #fff;
  padding: 4rem 0 2rem 0;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-widget h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}



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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-speed), transform var(--transition-speed);
  display: inline-block;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.96);
  transform: translateX(2px);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-brand {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.footer-brand-logo {
  display: block;
  max-width: 250px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--rounded-base);
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--color-bg);
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Shared Page Headings */
.page-shell {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
  max-width: 1280px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.page-header-row,
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
}

.page-header-row {
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.home-section-title {
  margin: 0;
  min-width: 0;
}

.home-section-link {
  flex-shrink: 0;
  white-space: nowrap;
  justify-self: end;
  align-self: start;
}

.section-header .section-description {
  grid-column: 1 / -1;
}

.page-header-copy,
.section-header-copy {
  display: grid;
  gap: 0.7rem;
  max-width: min(100%, 720px);
}

.page-title,
.section-title {
  margin: 0;
  color: var(--color-text-dark);
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 600;
}

.page-title {
  font-size: clamp(1.9rem, 2.8vw, 2.35rem);
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.15rem);
}

.page-description,
.section-description {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.page-description {
  max-width: 62ch;
}

.section-description {
  max-width: 58ch;
}

.page-copy {
  max-width: 800px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.page-toolbar {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  width: 100%;
  flex: 1;
  min-width: 250px;
}

/* Contact Page */
.contact-page {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
  max-width: 1280px;
  margin: 0 auto;
}

.contact-page-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}

.contact-page-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
}

.contact-page-description {
  margin: 0;
  max-width: 640px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

.contact-info-panel,
.contact-form-card {
  border-radius: var(--rounded-lg);
}

.contact-info-panel {
  padding: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-main {
  display: grid;
  gap: 2rem;
}

.contact-info-header {
  margin-bottom: 0;
}

.contact-info-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
}

.contact-info-text {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contact-detail-list {
  display: grid;
  gap: 1.35rem;
}

.contact-detail-item {
  padding: 0;
}

.contact-detail-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail-value {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.7;
}

.contact-detail-value a {
  color: inherit;
}

.contact-actions {
  margin-top: 0;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
}

.contact-whatsapp-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.contact-map-section {
  margin-top: 0;
}

.contact-info-footer {
  margin-top: auto;
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.contact-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #e2e8f0;
  aspect-ratio: 16 / 11;
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: none;
  border: 1px solid rgba(226, 232, 240, 0.95);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-header {
  margin-bottom: 1.5rem;
}

.contact-form-title {
  margin: 0 0 0.55rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.contact-form-text {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contact-alert {
  padding: 1rem;
  border-radius: 0.9rem;
  margin-bottom: 1.25rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.contact-alert-success {
  background-color: #dcfce7;
  border-color: #bbf7d0;
  color: #166534;
}

.contact-alert-error {
  background-color: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-card .form-group:last-of-type {
  margin-bottom: 1.25rem;
}

.contact-form-card .form-label {
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.contact-form-card .form-control {
  min-height: 52px;
  padding: 0.85rem 1rem;
  background: #f1f5f9;
  border-color: transparent;
  color: #0f172a;
}

.contact-form-card textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-form-card .form-control::placeholder {
  color: #64748b;
}

.contact-form-card .form-control:focus {
  background: #f1f5f9;
  border-color: var(--color-primary);
}

.contact-submit-btn {
  width: 100%;
  min-height: 52px;
  font-weight: 700;
  margin-top: auto;
}

/* Product Detail Page */
.product-detail-page {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem) clamp(3.5rem, 6vw, 5rem);
  max-width: 1280px;
  margin: 0 auto;
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-detail-back:hover {
  color: var(--color-primary);
}

.product-detail-back svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.product-detail-media {
  position: sticky;
  top: 7.25rem;
}

.product-detail-media-card {
  overflow: hidden;
  border-radius: var(--rounded-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--color-surface);
}

.product-detail-media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
}

.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-placeholder,
.product-related-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.product-detail-summary {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.product-detail-title {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-text-dark);
}

.product-detail-description {
  display: grid;
  gap: 1rem;
  max-width: 60ch;
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.product-detail-description p {
  margin: 0;
}

.product-detail-section {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--rounded-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--color-surface);
}

.product-detail-section-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.product-detail-feature-list {
  display: grid;
  gap: 0.85rem;
}

.product-detail-feature-item {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-dark);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.product-detail-feature-item::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

.product-detail-primary-action,
.product-detail-secondary-action {
  flex: 1 1 220px;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border-radius: var(--rounded-base);
  font-weight: 700;
}

.product-detail-primary-action {
  gap: 0.7rem;
}

.product-detail-primary-action svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.product-detail-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #0f172a;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-detail-secondary-action:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.product-related-section {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  display: grid;
  gap: 1.5rem;
}

.product-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-related-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
}

.product-related-description {
  margin-top: 0.55rem;
}

.product-related-all-link {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-related-all-link:hover {
  color: var(--color-primary);
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-related-card {
  overflow: hidden;
  border-radius: var(--rounded-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: var(--color-surface);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 110, 251, 0.22);
}

.product-related-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-related-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f8fafc;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.product-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-related-card:hover .product-related-media img {
  transform: scale(1.04);
}

.product-related-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem;
}

.product-related-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.product-related-card-text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-related-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 0.75rem;
  border-radius: var(--rounded-base);
  background: #f1f5f9;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-related-card:hover .product-related-card-action {
  background: var(--color-primary);
  color: #ffffff;
}

/* References Page */
.references-page {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
  max-width: 1280px;
  margin: 0 auto;
}

.references-page-header {
  margin-bottom: 2.5rem;
}

.references-page-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.reference-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--rounded-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 110, 251, 0.2);
  box-shadow: 0 12px 24px -12px rgba(15, 23, 42, 0.14);
}

.reference-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  background: #f8fafc;
  border-bottom: 1px solid var(--color-border);
}

.reference-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reference-card:hover .reference-media img {
  transform: scale(1.04);
}

.reference-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.4rem;
}

.reference-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
}

.reference-description {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.references-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-muted);
  padding: 3rem;
  border-radius: var(--rounded-lg);
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
}

/* Gallery Page */
.gallery-page {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  position: relative;
  appearance: none;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--rounded-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 110, 251, 0.2);
  box-shadow: 0 12px 24px -12px rgba(15, 23, 42, 0.14);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card:focus-visible {
  outline: none;
  border-color: rgba(135, 110, 251, 0.42);
  box-shadow: 0 0 0 4px rgba(135, 110, 251, 0.18), 0 12px 24px -12px rgba(15, 23, 42, 0.14);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.12s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: calc(100vw - 1.5rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  margin: 0;
  pointer-events: none;
}

.gallery-lightbox-topbar > * {
  pointer-events: auto;
}

.gallery-lightbox-counter {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.34);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.gallery-lightbox-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.gallery-lightbox-frame img {
  display: block;
  max-width: calc(100vw - 1.5rem);
  max-height: calc(100vh - 1.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-lightbox-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 0 0.75rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.gallery-lightbox-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, opacity 0.12s ease;
  pointer-events: auto;
}

.gallery-lightbox-button svg {
  width: 18px;
  height: 18px;
}

.gallery-lightbox-nav span {
  display: none;
}

.gallery-lightbox-button:hover {
  background: rgba(15, 23, 42, 0.58);
  border-color: rgba(255, 255, 255, 0.24);
}

.gallery-lightbox-button:focus-visible {
  outline: none;
  border-color: rgba(135, 110, 251, 0.44);
  box-shadow: 0 0 0 4px rgba(135, 110, 251, 0.16);
}

.gallery-lightbox-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gallery-lightbox-close {
  width: 48px;
  min-width: 48px;
}

.gallery-lightbox-nav {
  min-width: 48px;
}

.gallery-empty {
  padding: 3rem;
  text-align: center;
  color: var(--color-text-muted);
  border-radius: var(--rounded-lg);
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
}

@media (max-width: 980px) {
  .page-header-row,
  .section-header,
  .product-related-header {
    align-items: flex-start;
  }

  .section-header {
    grid-template-columns: 1fr auto;
  }

  .page-toolbar {
    max-width: 100%;
    min-width: 0;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    position: static;
  }

  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-detail-title {
    font-size: clamp(1.75rem, 7vw, 2.1rem);
  }

  .product-detail-actions {
    display: grid;
  }

  .product-related-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .gallery-lightbox {
    padding: 0.5rem;
  }

  .gallery-lightbox-frame {
    min-height: 0;
  }

  .gallery-lightbox-frame img {
    max-width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
  }

  .gallery-lightbox-actions {
    padding: 0 0.5rem;
  }

  .gallery-lightbox-nav {
    min-width: 44px;
    min-height: 44px;
  }

  .references-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reference-media {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-topbar {
    gap: 0.75rem;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
  }

  .gallery-lightbox-counter {
    min-height: 40px;
    padding: 0 0.8rem;
    font-size: 0.88rem;
  }

  .gallery-lightbox-frame {
    min-height: 0;
  }

  .gallery-lightbox-button {
    min-width: 42px;
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card,
  .gallery-card img,
  .gallery-lightbox,
  .gallery-lightbox-button {
    transition: none;
  }
}

/* Admin Specific Overrides */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 250px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 2rem 1rem;
}

.admin-sidebar a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--rounded-base);
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.admin-content {
  flex: 1;
  padding: 2rem;
}

.admin-logo-preview {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.65rem;
}

.admin-logo-preview-label {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-logo-preview-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--rounded-lg);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(51, 65, 85, 0.96) 100%);
}

.admin-logo-preview-image {
  display: block;
  max-width: min(100%, 280px);
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.admin-logo-preview-path {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  word-break: break-all;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table th,
.table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.table th {
  background-color: rgba(0, 0, 0, 0.02);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .contact-layout,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .admin-wrapper {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
  }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.8);
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.25s ease, color 0.25s ease;
  pointer-events: auto;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

@media (max-width: 768px) {
  .slider-controls {
    padding: 0 0.9rem;
  }
}

/* ═══════════════════════════════════════════════
   Reference Logo Marquee Strip
   ═══════════════════════════════════════════════ */
.marquee-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-left: none;
  border-right: none;
  border-radius: 0;
  overflow: hidden;
  padding: 1.75rem 0;
  margin-top: 3.5rem;
  position: relative;
}

/* Edge fade masks */
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface), transparent);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0.45;
  transition: opacity 0.3s ease;
  user-select: none;
}

.marquee-logo:hover {
  opacity: 1;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Floating Contact Buttons */
.floating-contact-stack {
  position: fixed;
  right: 36px;
  bottom: 36px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-float,
.whatsapp-float {
  width: 62px;
  height: 62px;
  color: #fff;
  border-radius: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.phone-float {
  background: linear-gradient(180deg, #9b86ff 0%, #7658f7 100%);
  box-shadow: 0 22px 42px -24px rgba(118, 88, 247, 0.7), 0 18px 30px -24px rgba(15, 23, 42, 0.58);
}

.phone-float:hover {
  background: linear-gradient(180deg, #8f78ff 0%, #6a4af4 100%);
  transform: translateY(-3px);
  box-shadow: 0 26px 46px -24px rgba(118, 88, 247, 0.78), 0 18px 32px -24px rgba(15, 23, 42, 0.6);
  color: #fff;
}

.phone-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(248, 249, 252, 0.75), 0 0 0 8px rgba(118, 88, 247, 0.24), 0 26px 46px -24px rgba(118, 88, 247, 0.78);
}

.whatsapp-float {
  background: linear-gradient(180deg, #29d766 0%, #1fb959 100%);
  box-shadow: 0 22px 42px -24px rgba(31, 185, 89, 0.78), 0 18px 30px -24px rgba(15, 23, 42, 0.58);
}

.whatsapp-float:hover {
  background: linear-gradient(180deg, #24cd5d 0%, #1aa44f 100%);
  transform: translateY(-3px);
  box-shadow: 0 26px 46px -24px rgba(31, 185, 89, 0.85), 0 18px 32px -24px rgba(15, 23, 42, 0.6);
  color: #fff;
}

.whatsapp-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(248, 249, 252, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.3), 0 26px 46px -24px rgba(31, 185, 89, 0.85);
}

.phone-float svg,
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .floating-contact-stack {
    bottom: 24px;
    right: 24px;
    gap: 10px;
  }

  .phone-float,
  .whatsapp-float {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .phone-float svg,
  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}
