:root {
  --brand: #2c176c;
  --brand-dark: #160b3f;
  --brand-deep: #0d0824;
  --brand-light: #745ce5;
  --accent: #57d4ff;
  --accent-2: #9ae77b;
  --ink: #18152a;
  --muted: #69667a;
  --surface: #f7f7fb;
  --surface-2: #efeff7;
  --white: #ffffff;
  --line: rgba(44, 23, 108, 0.12);
  --shadow-sm: 0 10px 35px rgba(30, 17, 68, 0.08);
  --shadow-lg: 0 24px 80px rgba(19, 10, 53, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.loader-active {
  overflow: hidden;
}

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

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

@media (min-width: 1600px){
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: 1480px
  }
}

::selection {
  color: var(--white);
  background: var(--brand);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brand);
  border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
}

.section-padding {
  padding: 110px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--brand-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading .section-copy {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font-weight: 750;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background-color .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  border-color: transparent;
  box-shadow: 0 13px 28px rgba(68, 42, 155, .28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  background: linear-gradient(135deg, #816af0, #311879);
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(68, 42, 155, .36);
}

.btn-soft {
  color: var(--brand);
  background: rgba(44, 23, 108, .08);
  border-color: transparent;
}

.btn-soft:hover,
.btn-soft:focus {
  color: var(--white);
  background: var(--brand);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

.text-link i {
  transition: transform .2s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(116, 92, 229, .18), transparent 32%),
    var(--brand-deep);
  transition: opacity .55s ease, visibility .55s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  width: min(88vw, 360px);
  padding: 34px;
  text-align: center;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.loader-card img {
  width: 180px;
}

.loader-card p {
  margin: 18px 0 0;
  color: var(--brand-dark);
  font-size: .84rem;
  font-weight: 750;
}

.loader-line {
  width: 100%;
  height: 4px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(44, 23, 108, .12);
  border-radius: 999px;
}

.loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: inherit;
  animation: loader-slide 1.05s ease-in-out infinite alternate;
}

@keyframes loader-slide {
  from { transform: translateX(0); }
  to { transform: translateX(122%); }
}

/* Navbar */
.navbar {
  min-height: 82px;
  padding: 8px 0;
  background: rgba(13, 8, 36, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  transition: min-height .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.navbar.is-scrolled {
  min-height: 72px;
  background: rgba(13, 8, 36, .95);
  box-shadow: 0 12px 35px rgba(9, 5, 28, .18);
}

.navbar-brand {
  display: flex;
  align-items: center;
  width: 118px;
  height: 80px;
  padding: 4px 10px;
  overflow: hidden;
  background: var(--white);
  border-radius: 10px;
}

.navbar-brand img {
  width: 100%;
}

.nav-link {
  position: relative;
  padding: .65rem .8rem !important;
  color: rgba(255, 255, 255, .78);
  font-size: .93rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: .8rem;
  bottom: .35rem;
  left: .8rem;
  height: 2px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  display: flex;
  width: 46px;
  height: 42px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  box-shadow: none !important;
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

/* Hero */
.hero-section {
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(13, 8, 36, .98), rgba(35, 17, 91, .95) 54%, rgba(26, 15, 66, .98)),
    var(--brand-deep);
}

.hero-container {
  display: flex;
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 100px;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 0 49.5%, rgba(87,212,255,.4) 49.5% 50%, transparent 50% 100%);
  background-size: 420px 100%;
  animation: grid-scan 9s linear infinite;
}

@keyframes grid-scan {
  from { transform: translateX(-420px); }
  to { transform: translateX(420px); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-orb-one {
  top: 13%;
  right: 2%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(87, 212, 255, .18), transparent 67%);
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-two {
  bottom: -15%;
  left: 14%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(116, 92, 229, .25), transparent 67%);
  animation: orb-float 10s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -18px, 0) scale(1.04); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 13px;
  color: #dbf7ff;
  background: rgba(87, 212, 255, .11);
  border: 1px solid rgba(87, 212, 255, .24);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-section h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero-section h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #8ee6ff 45%, #a99bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

.hero-actions {
  margin-top: 34px;
}

.hero-actions .btn-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .26);
}

.hero-actions .btn-outline-light:hover {
  color: var(--brand-dark);
  background: var(--white);
}

.hero-trust {
  max-width: 730px;
}

.trust-item {
  display: flex;
  padding-left: 15px;
  flex-direction: column;
  border-left: 2px solid rgba(87, 212, 255, .4);
}

.trust-item strong {
  color: var(--white);
  font-size: 1.08rem;
}

.trust-item span {
  color: rgba(255, 255, 255, .52);
  font-size: .82rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.visual-frame {
  position: relative;
  width: min(100%, 410px);
  padding: 64px 42px 38px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(4, 2, 17, .38);
  backdrop-filter: blur(20px);
}

.visual-frame::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  pointer-events: none;
}

.visual-frame > img {
  width: 222px;
  padding: 4px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .24);
}

.visual-dots {
  position: absolute;
  top: 24px;
  left: 26px;
  display: flex;
  gap: 7px;
}

.visual-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.34);
  border-radius: 50%;
}

.visual-dots span:nth-child(2) { background: var(--accent); }
.visual-dots span:nth-child(3) { background: var(--accent-2); }

.status-panel {
  margin-top: 28px;
  text-align: left;
}

.status-panel > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
}

.status-panel small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #78e497;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(120, 228, 151, .13);
}

.status-dot.is-closed {
  background: #ff8a8a;
  box-shadow: 0 0 0 5px rgba(255, 138, 138, .14);
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 12px;
  box-shadow: 0 16px 35px rgba(5, 2, 20, .24);
  font-size: .82rem;
  font-weight: 800;
  animation: chip-float 4s ease-in-out infinite;
}

.floating-chip i {
  color: var(--brand-light);
  font-size: 1.1rem;
}

.chip-one { top: 9%; left: -5%; }
.chip-two { right: -7%; bottom: 24%; animation-delay: -1.4s; }
.chip-three { bottom: 5%; left: 2%; animation-delay: -2.7s; }

@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 28px;
  height: 44px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

body.is-ready .reveal-up {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .18s; }

/* About */
.about-section {
  background: var(--white);
}

.feature-strip {
  position: relative;
}

.feature-box {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-box::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(116, 92, 229, .12), transparent 70%);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(116, 92, 229, .28);
  box-shadow: var(--shadow-sm);
}

.feature-icon,
.service-icon,
.hours-icon,
.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--brand);
  background: rgba(116, 92, 229, .1);
  border-radius: 14px;
  place-items: center;
  font-size: 1.35rem;
}

.feature-box h3 {
  margin: 24px 0 10px;
  font-size: 1.18rem;
  font-weight: 800;
}

.feature-box p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

/* Services */
.services-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(116, 92, 229, .08), transparent 25%),
    var(--surface);
}

.service-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44, 23, 108, .1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(25, 14, 58, .035);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(116, 92, 229, .35);
  box-shadow: 0 20px 48px rgba(25, 14, 58, .11);
}

.service-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 110px;
  content: "";
  background: linear-gradient(135deg, transparent 50%, rgba(116, 92, 229, .06) 50%);
}

.service-card-accent {
  color: var(--white);
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  border-color: transparent;
}

.service-card-accent p,
.service-card-accent .service-number {
  color: rgba(255, 255, 255, .68);
}

.service-card-accent .service-icon {
  color: #c9ffb6;
  background: rgba(154, 231, 123, .14);
}

.service-card-accent .service-tags span {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(44, 23, 108, .18);
  font-size: 1.1rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 26px 0 12px;
  font-size: 1.24rem;
  font-weight: 850;
  letter-spacing: -.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.service-tags {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  padding: 5px 9px;
  color: var(--brand);
  background: rgba(44, 23, 108, .07);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 750;
}

/* Recycle */
.recycle-section {
  padding-top: 0;
  background: var(--surface);
}

.recycle-panel {
  position: relative;
  padding: clamp(40px, 6vw, 78px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(24, 84, 60, .97), rgba(14, 57, 47, .98)),
    #164f3d;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.recycle-panel::before,
.recycle-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.recycle-panel::before {
  top: -130px;
  right: -90px;
  width: 390px;
  height: 390px;
}

.recycle-panel::after {
  right: 60px;
  bottom: -180px;
  width: 330px;
  height: 330px;
}

.eyebrow-light {
  color: #dfffd4;
  background: rgba(154,231,123,.12);
  border-color: rgba(154,231,123,.25);
}

.recycle-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.recycle-panel p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
}

.recycle-items {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.recycle-items span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 700;
}

.recycle-items i {
  color: #a9ef90;
}

.recycle-symbol {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 170px;
  height: 170px;
  color: #cbffb9;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  place-items: center;
  font-size: 5.5rem;
  box-shadow: inset 0 0 40px rgba(255,255,255,.05);
}

.recycle-symbol i {
  animation: recycle-turn 13s linear infinite;
}

@keyframes recycle-turn {
  to { transform: rotate(360deg); }
}

/* Hours */
.hours-section {
  background: var(--white);
}

.hours-intro {
  padding: 18px 20px 18px 0;
}

.hours-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hours-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.hours-card-head h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 850;
}

.hours-card-head p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.hours-list {
  margin-top: 12px;
}

.hours-list > div {
  display: flex;
  padding: 9px 10px;
  align-items: center;
  justify-content: space-between;
  border-radius: 9px;
  font-size: .88rem;
}

.hours-list > div.is-today {
  color: var(--brand-dark);
  background: rgba(116, 92, 229, .1);
}

.hours-list > div.is-today span::after {
  margin-left: 7px;
  padding: 2px 6px;
  content: "Bugün";
  color: var(--white);
  background: var(--brand-light);
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 800;
  vertical-align: 1px;
}

.hours-list strong {
  color: var(--brand-dark);
  font-size: .84rem;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(87,212,255,.11), transparent 28%),
    var(--surface);
}

.contact-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info {
  padding: clamp(32px, 5vw, 56px);
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-brand img {
  width: 132px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-brand h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.4rem;
  font-weight: 850;
}

.contact-brand p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  margin-top: 34px;
  gap: 20px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.1rem;
}

.contact-item span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 650;
  line-height: 1.55;
}

.contact-item a:hover {
  color: var(--brand-light);
}

.contact-actions {
  margin-top: 30px;
}

.social-area {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.social-area > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--brand);
  background: rgba(44, 23, 108, .07);
  border: 1px solid rgba(44, 23, 108, .08);
  border-radius: 11px;
  place-items: center;
  font-size: 1.08rem;
  transition: transform .2s ease, color .2s ease, background-color .2s ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-3px);
}

.social-links a.is-disabled {
  opacity: .42;
  cursor: not-allowed;
}

.social-links a.is-disabled:hover {
  color: var(--brand);
  background: rgba(44, 23, 108, .07);
  transform: none;
}

.sahibinden-link span {
  display: grid;
  width: 22px;
  height: 22px;
  color: #1e1e1e;
  background: #ffe800;
  border-radius: 5px;
  place-items: center;
  font-size: .83rem;
  font-weight: 950;
}

.social-area small {
  display: block;
  margin-top: 9px;
  color: #9895a6;
  font-size: .72rem;
}

.map-wrap {
  position: relative;
  min-height: 650px;
  background: var(--surface-2);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
  filter: saturate(.88) contrast(1.02);
}

.map-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.96);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  font-size: .82rem;
  font-weight: 850;
}

/* Footer */
.site-footer {
  padding: 26px 0;
  color: rgba(255,255,255,.58);
  background: var(--brand-deep);
  font-size: .82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

/* Floating contacts */
.floating-contact {
  position: fixed;
  bottom: 26px;
  z-index: 1000;
  display: inline-flex;
  min-width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;
  box-shadow: 0 13px 32px rgba(8, 4, 25, .25);
  font-weight: 850;
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-contact:hover {
  color: var(--white);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 38px rgba(8, 4, 25, .32);
}

.floating-contact > i {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
}

.floating-label {
  position: relative;
  z-index: 2;
  font-size: .82rem;
}

.floating-call {
  left: 24px;
  background: linear-gradient(135deg, #4d32ae, var(--brand));
}

.floating-whatsapp {
  right: 24px;
  background: linear-gradient(135deg, #2bd46f, #0e9d4c);
}

.contact-pulse,
.floating-contact::before,
.floating-contact::after {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: "";
  border: 2px solid currentColor;
  border-radius: inherit;
  opacity: 0;
  animation: contact-ripple 2.7s ease-out infinite;
}

.floating-contact::before { animation-delay: .85s; }
.floating-contact::after { animation-delay: 1.7s; }

@keyframes contact-ripple {
  0% { transform: scale(.95); opacity: .48; }
  75%, 100% { transform: scale(1.55); opacity: 0; }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .chip-one { left: 0; }
  .chip-two { right: 0; }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 86px 0;
  }

  .navbar-collapse {
    margin-top: 8px;
    padding: 18px;
    background: rgba(13, 8, 36, .98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
  }

  .nav-link::after {
    display: none;
  }

  .hero-container {
    padding-top: 145px;
  }

  .hero-section h1 {
    max-width: 860px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hours-intro {
    padding-right: 0;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .section-padding {
    padding: 72px 0;
  }

  .hero-container {
    padding-top: 128px;
    padding-bottom: 80px;
  }

  .hero-section h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .hero-lead {
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
  }

  .visual-frame {
    width: min(92%, 390px);
    padding: 56px 28px 32px;
  }

  .visual-frame > img {
    width: 190px;
  }

  .floating-chip {
    padding: 9px 12px;
    font-size: .74rem;
  }

  .chip-one { top: 3%; left: 1%; }
  .chip-two { right: 0; bottom: 24%; }
  .chip-three { bottom: 4%; left: 3%; }

  .feature-box,
  .service-card,
  .hours-card {
    padding: 28px;
  }

  .recycle-panel {
    border-radius: 26px;
  }

  .recycle-symbol {
    width: 125px;
    height: 125px;
    font-size: 4rem;
  }

  .contact-brand {
    align-items: flex-start;
  }

  .contact-brand img {
    width: 105px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .floating-contact {
    bottom: 17px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
  }

  .floating-call { left: 16px; }
  .floating-whatsapp { right: 16px; }

  .floating-label {
    position: absolute;
    bottom: calc(100% + 9px);
    left: 50%;
    padding: 4px 8px;
    color: var(--white);
    background: rgba(13,8,36,.88);
    border-radius: 6px;
    font-size: .66rem;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 5px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .floating-contact:hover .floating-label,
  .floating-contact:focus .floating-label {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 479.98px) {
  .navbar-brand {
    width: 104px;
    height: 58px;
  }

  .eyebrow {
    font-size: .68rem;
  }

  .hero-trust > div:last-child {
    margin-top: 4px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .floating-chip {
    max-width: 145px;
    line-height: 1.2;
  }

  .contact-brand {
    gap: 14px;
  }

  .contact-brand h3 {
    font-size: 1.16rem;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}
