﻿:root {
  --navy: #061a33;
  --navy-2: #0b274d;
  --cyan: #05bfe8;
  --cyan-2: #00e0ff;
  --orange: #ff7a00;
  --orange-dark: #e65d00;
  --orange-soft: rgba(255,122,0,.13);
  --ink: #122033;
  --muted: #607086;
  --line: #dbe7f0;
  --soft: #f3f8fb;
  --white: #ffffff;
  --green: #21c06b;
  --red: #e84142;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.topbar .container,
.site-header .container,
.nav-links,
.cta-row,
.hero-stats,
.service-meta,
.contact-actions,
.footer-grid,
.article-meta {
  display: flex;
  align-items: center;
}

.topbar .container {
  min-height: 42px;
  justify-content: space-between;
  gap: 20px;
}

.topbar a { color: var(--white); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header .container {
  min-height: 82px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(188px, 18vw, 255px);
  max-height: 62px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  gap: 24px;
  padding: 0;
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.header-actions { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(6,26,51,.16); }
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-outline { background: var(--orange); border-color: var(--orange); color: var(--white); }
.btn-outline:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-phone { background: var(--navy); color: var(--white); }

.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,26,51,.96) 0%, rgba(6,26,51,.86) 39%, rgba(6,26,51,.38) 72%, rgba(6,26,51,.2) 100%),
    url("../images/hero-fiber-optik.jpg") center right / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 118px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero .eyebrow,
.section-dark .eyebrow,
.blog-hero .eyebrow,
.article-hero .eyebrow { color: var(--cyan-2); }

.eyebrow i { display: none; }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 20px;
  flex: 0 0 28px;
  background: url("../images/favicon-symbol.png") center / contain no-repeat;
  filter: drop-shadow(0 3px 8px rgba(255,122,0,.22));
}

.hero .eyebrow::before,
.section-dark .eyebrow::before,
.blog-hero .eyebrow::before,
.article-hero .eyebrow::before {
  filter: drop-shadow(0 0 10px rgba(0,224,255,.28));
}

.hero h1 {
  width: min(780px, 100%);
  margin: 18px 0 20px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 500;
}


.hero-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 8px 18px;
  max-width: 760px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-service-list i {
  color: var(--orange);
  margin-top: 5px;
  font-size: 14px;
}

.hero p {
  width: min(720px, 100%);
  color: rgba(255,255,255,.86);
  font-size: 19px;
  margin: 0 0 30px;
}

.cta-row { gap: 12px; flex-wrap: wrap; }
.cta-row-center { justify-content: center; }
.cta-row-spaced { margin-top: 28px; }

.hero-stats {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.stat {
  min-width: 170px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
}

.stat strong { display: block; font-size: 27px; color: var(--white); line-height: 1; }
.stat span { color: rgba(255,255,255,.75); font-size: 14px; }

section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: var(--white); }
.feature-video-band { position: relative; isolation: isolate; overflow: hidden; background: var(--navy); }
.feature-video-band::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,26,51,.78), rgba(6,26,51,.56) 48%, rgba(6,26,51,.4)); pointer-events: none; }
.section-bg-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; pointer-events: none; }
.feature-video-band .container { position: relative; z-index: 2; }

.section-head {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 8px 0 12px; color: var(--navy); font-size: clamp(30px, 4vw, 48px); line-height: 1.12; letter-spacing: 0;
  font-weight: 600; }
.section-dark .section-head h2 { color: var(--white); }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }
.section-dark .section-head p { color: rgba(255,255,255,.72); }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.about-panel {
  border-left: 5px solid var(--orange);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(6,26,51,.08);
  border-radius: 8px;
}

.about-panel h3 { margin-top: 0; color: var(--navy); font-size: 25px; }

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-stack img,
.feature-image img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-stack img:first-child { min-height: 360px; grid-row: span 2; }
.image-stack img:not(:first-child) { min-height: 172px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.why-card,
.blog-card,
.faq-item,
.contact-card,
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px;
  min-height: 255px;
  box-shadow: 0 10px 26px rgba(6,26,51,.04);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(5,191,232,.08), rgba(255,122,0,.13));
  opacity: 0;
  transition: opacity .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,122,0,.38);
  box-shadow: 0 22px 46px rgba(6,26,51,.12);
}

.service-card:hover::before { opacity: 1; }

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.06);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(230,93,0,.22);
}

.service-icon,
.why-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 8px;
  font-size: 21px;
  margin-bottom: 16px;
}

.service-icon { transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease; }

.service-card h3,
.why-card h3,
.blog-card h3,
.faq-item h3,
.contact-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.service-card p,
.why-card p,
.blog-card p,
.faq-item p,
.contact-card p {
  color: var(--muted);
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.feature-video-band .feature-copy { background: transparent; padding-left: 0; text-shadow: 0 2px 18px rgba(0,0,0,.32); }
.feature-video-band .feature-copy p, .feature-video-band .check-list li { color: rgba(255,255,255,.86); }
.feature-video-band .feature-image { border: 1px solid rgba(255,255,255,.18); border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.feature-video-band .feature-image img { opacity: .82; }

.feature-copy {
  padding: 42px;
  background: var(--navy-2);
  border-radius: 8px;
}

.feature-copy h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.12; margin: 8px 0 18px; }
.feature-copy p { color: rgba(255,255,255,.74); }
.feature-image { min-height: 440px; }

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: rgba(255,255,255,.88);
}

.check-list i { color: var(--orange); margin-top: 5px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.why-card { padding: 20px; }
.why-card h3 { font-size: 18px; }

.coverage {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.districts span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--white), var(--orange-soft));
  color: var(--navy);
  border: 1px solid rgba(255,122,0,.2);
  font-weight: 600;
  font-size: 14px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card { overflow: hidden; }
.blog-card img { height: 205px; border-radius: 0; }
.blog-card .content { padding: 22px; }
.blog-card h3 { font-size: 20px; }
.blog-card a.more { color: var(--orange-dark); font-weight: 700; margin-top: 14px; display: inline-flex; gap: 8px; align-items: center; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,122,0,.28);
  box-shadow: 0 14px 30px rgba(6,26,51,.08);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq-question i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  margin: 0;
  transition: padding .28s ease;
}

.faq-item.is-open {
  border-color: rgba(5,191,232,.36);
  box-shadow: 0 18px 36px rgba(6,26,51,.08);
}

.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 0 22px 22px; }
.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
  background: var(--orange);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-card { padding: 26px; }
.contact-actions { gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.placeholder { color: var(--muted); font-weight: 600; }
.contact-placeholder { margin-top: 18px; }

.map-placeholder {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.map-placeholder iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--orange-dark);
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #041326;
  color: rgba(255,255,255,.76);
  padding: 58px 0 24px;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: -32px;
  width: min(360px, 42vw);
  aspect-ratio: 1000 / 585;
  background: url("../images/logowithoutname-mark.png") center / contain no-repeat;
  opacity: .16;
  pointer-events: none;
}

.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 34px;
}

.footer-col { max-width: 360px; }
.footer-col h3, .footer-col h4 { color: var(--white); margin-top: 0; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-phone,
.footer-whatsapp {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  color: var(--white);
}

.footer-phone { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); }
.footer-whatsapp { background: var(--green); }
.footer-phone:hover,
.footer-whatsapp:hover { color: var(--white); transform: translateY(-1px); }
.copyright { padding-top: 22px; font-size: 14px; }

.blog-hero,
.article-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 80px 0;
}

.blog-hero h1,
.article-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  margin: 10px 0 14px;
  max-width: 900px;
  font-weight: 500;
}

.article-meta { gap: 12px; color: rgba(255,255,255,.76); flex-wrap: wrap; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.article-card { padding: 34px; }
.article-card h2 { color: var(--navy); margin-top: 26px; }
.article-card p, .article-card li { color: #314158; }
.article-card img { width: 100%; max-height: 430px; object-fit: cover; border-radius: 8px; margin-bottom: 24px; }
.sidebar { position: sticky; top: 104px; }
.sidebar .contact-card + .contact-card { margin-top: 16px; }


.references-section {
  background: var(--white);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.reference-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), #f8fbfd);
  box-shadow: 0 18px 45px rgba(6,26,51,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,122,0,.42);
  box-shadow: 0 24px 55px rgba(6,26,51,.1);
}

.reference-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(255,122,0,.18);
  padding: 8px;
}

.reference-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.reference-card p {
  margin: 0;
  color: var(--muted);
}
`r`n
.references-note {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  color: var(--navy);
  border-radius: 8px;
}

.references-note p { margin: 0; }

@media (max-width: 1050px) {
  .services-grid, .blog-grid, .references-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .feature-grid, .contact-grid, .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 820px) {
  .section-bg-video { display: none; }
  .feature-video-band::before { background: var(--navy); }
  .feature-video-band .feature-copy { padding-left: 24px; text-shadow: none; }
  .topbar .container { align-items: flex-start; flex-direction: column; padding: 10px 0; gap: 6px; }
  .site-header .container { min-height: 74px; gap: 12px; }
  .site-header nav { order: 1; }
  .site-header .brand { order: 2; margin-left: auto; }
  .site-header .header-actions { order: 3; }
  .brand-logo { width: 198px; max-height: 60px; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 24px 45px rgba(6,26,51,.14);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px; }
  .header-actions .btn { display: none; }
  .hero { min-height: auto; }
  .hero .container { padding: 84px 0 64px; }
  .hero::before { background: linear-gradient(90deg, rgba(6,26,51,.96), rgba(6,26,51,.72)), url("../images/hero-fiber-optik.jpg") center / cover no-repeat; }
  section { padding: 66px 0; }
  .services-grid, .blog-grid, .faq-grid, .references-grid { grid-template-columns: 1fr; }
  .reference-card { grid-template-columns: 64px 1fr; padding: 18px; }
  .reference-card img { width: 64px; height: 64px; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img:first-child, .image-stack img:not(:first-child), .feature-image { min-height: 250px; }
  .feature-copy, .contact-card, .coverage, .article-card { padding: 24px; }
  .footer-grid { display: grid; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-logo { width: 188px; max-height: 58px; }
  .hero-service-list { grid-template-columns: 1fr; font-size: 16px; margin: 20px 0 26px; }
  .hero .cta-row .btn,
  .contact-actions .btn,
  .article-card .cta-row .btn { width: 100%; }
  .stat { width: 100%; }

.why-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 76px; }
  section:last-of-type { padding-bottom: 88px; }
}

.contact-card-primary {
  position: relative;
  overflow: hidden;
}

.brand-seal {
  width: 118px;
  height: 118px;
  float: right;
  margin: 0 0 14px 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(6,26,51,.12);
  border: 1px solid rgba(255,122,0,.22);
}

@media (max-width: 620px) {
  .brand-seal {
    float: none;
    width: 96px;
    height: 96px;
    margin: 0 0 18px;
  }
}

.floating-phone,
.floating-whatsapp,
.scroll-top {
  position: fixed;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
}

.floating-phone,
.floating-whatsapp {
  left: 22px;
  animation: floatPulse 2.7s ease-in-out infinite;
}

.floating-phone {
  bottom: 100px;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255,122,0,.34);
}

.floating-whatsapp {
  bottom: 24px;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37,211,102,.36);
}

.floating-phone::before,
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: .34;
  animation: whatsAppRing 2.7s ease-in-out infinite;
}

.floating-phone i,
.floating-whatsapp i {
  position: relative;
  z-index: 1;
  font-size: 31px;
  line-height: 1;
}

.scroll-top {
  right: 22px;
  bottom: 24px;
  background: var(--orange);
  box-shadow: 0 16px 32px rgba(255,122,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.92);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease, box-shadow .24s ease, background .24s ease;
  animation: arrowFloat 2.4s ease-in-out infinite;
}

.scroll-top i { font-size: 22px; }

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover,
.floating-phone:hover,
.floating-whatsapp:hover {
  color: var(--white);
}

.scroll-top:hover {
  background: var(--orange-dark);
  box-shadow: 0 20px 38px rgba(255,122,0,.42);
  transform: translateY(-4px) scale(1.04);
}

.floating-phone:hover {
  animation-play-state: paused;
  background: var(--orange-dark);
  box-shadow: 0 18px 38px rgba(255,122,0,.44);
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp:hover {
  animation-play-state: paused;
  box-shadow: 0 18px 38px rgba(37,211,102,.46);
  transform: translateY(-4px) scale(1.03);
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes whatsAppRing {
  0%, 100% { opacity: .7; transform: scale(.96); }
  50% { opacity: .18; transform: scale(1.12); }
}

@keyframes arrowFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}
@media (max-width: 620px) {
  .floating-phone,
  .floating-whatsapp,
  .scroll-top {
    width: 52px;
    height: 52px;
    bottom: 16px;
  }
  .floating-phone, .floating-whatsapp { left: 14px; }
  .floating-phone { bottom: 88px; }
  .floating-phone i,
  .floating-whatsapp i { font-size: 30px; }
  .scroll-top { right: 14px; }
}










