.corner-page { margin-top: 5rem; }

.corner-hero,
.corner-testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2, #fdf2f8 52%, #fff7ed);
}
.corner-hero {
  padding-top: 5.5rem;
  padding-bottom: 4.1rem;
}
/* Dot indicator on the hero pill — matches the section badges */
.corner-hero .pill::before {
  content: '';
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
  align-self: center;
}

.corner-hero .section-title { margin: 1rem 0 1rem; }
.corner-hero p:not(.badge):not(.pill) { max-width: 43rem; font-size: 1.08rem; }
.corner-hero .hero-actions .btn {
  height: 3rem;
  padding-inline: 1.45rem;
  font-size: 0.9rem;
}

/* Hero two-column layout — text left, video right */
.corner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.5rem;
}
.corner-hero-grid--single { grid-template-columns: minmax(0, 1fr); }
.corner-hero-text { min-width: 0; }
.corner-hero-media {
  position: relative;
  width: 100%;
  animation: heroFadeUp 0.7s 0.25s ease both;
}
.corner-hero-media .vshowcase-frame-wrap { max-width: 100%; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .corner-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }
  .corner-hero-media { max-width: 560px; margin-inline: auto; }
}

.nav-links .is-active { color: #db2777; font-weight: 800; }

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.corner-services { background: #fff; }
.corner-services .section-head { margin-bottom: 3.5rem; }
.corner-services .section-head p { max-width: 42rem; }
.corner-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.8rem;
  row-gap: 1.4rem;
}
.corner-service-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.corner-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(236, 72, 153, 0.16);
}
.corner-service-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.corner-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: transform 0.22s ease;
}
.corner-service-card:hover .corner-icon-wrap {
  transform: scale(1.08);
}
.icon-bg-rose { background: #fff1f2; }
.icon-bg-amber { background: #fffbeb; }
.icon-bg-sky { background: #f0f9ff; }
.icon-bg-lime { background: #f7fee7; }
.icon-bg-fuchsia { background: #fdf4ff; }
.icon-bg-red { background: #fef2f2; }
.icon-bg-cyan { background: #ecfeff; }
.icon-bg-orange { background: #fff7ed; }
.icon-bg-violet { background: #f5f3ff; }
.icon-color-rose { color: #f43f5e; }
.icon-color-amber { color: #f59e0b; }
.icon-color-sky { color: #0ea5e9; }
.icon-color-lime { color: #65a30d; }
.icon-color-fuchsia { color: #d946ef; }
.icon-color-red { color: #ef4444; }
.icon-color-cyan { color: #0891b2; }
.icon-color-orange { color: #ea580c; }
.icon-color-violet { color: #7c3aed; }
.corner-icon {
  font-size: 1.35rem;
}
.corner-icon-svg {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.corner-icon-svg svg {
  width: 100%;
  height: 100%;
}
.corner-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  color: #111827;
}
.corner-service-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0.95rem;
}
.corner-service-card ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.4rem;
  margin: 0;
}
.corner-service-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: #4b5563;
}
.corner-service-card li i {
  font-size: 0.82rem;
}
.corner-check {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.corner-check svg {
  width: 100%;
  height: 100%;
}

.corner-portfolio { background: linear-gradient(125deg, #fff7ed, #fdf2f8, #faf5ff); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.portfolio-card {
  cursor: pointer;
  transition: transform 0.25s ease;
}
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card:hover h3 { color: #db2777; }
.portfolio-thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.portfolio-thumb.has-portfolio-image {
  background-size: cover;
  background-position: center;
}
.portfolio-thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0);
  transition: background 0.25s ease;
}
.portfolio-card:hover .portfolio-thumb {
  box-shadow: 0 20px 40px rgba(219,39,119,0.15);
  transform: translateY(-2px);
}
.portfolio-card:hover .portfolio-thumb::after { background: rgba(0,0,0,0.1); }
.portfolio-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.portfolio-deco-dots {
  display: flex;
  gap: 0.45rem;
}
.portfolio-deco-dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.portfolio-deco-lines {
  display: grid;
  gap: 0.5rem;
}
.portfolio-line {
  height: 0.7rem;
  border-radius: 999px;
}
.portfolio-line-long { width: 74%; background: rgba(255,255,255,0.4); }
.portfolio-line-short { width: 50%; background: rgba(255,255,255,0.3); }
.portfolio-hover-btn {
  opacity: 0;
  transform: translateY(6px);
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  color: #111827;
  font-size: 0.88rem;
  font-weight: 800;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.portfolio-hover-btn i { color: #db2777; }
.portfolio-card:hover .portfolio-hover-btn,
.portfolio-card:focus-visible .portfolio-hover-btn {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-card p {
  margin: 0;
  color: #db2777;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.portfolio-card h3 { font-size: 1.16rem; margin-top: 0.35rem; }

/* Creative Portfolio Gallery Modal */
.gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gallery-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-modal {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  max-width: 56rem;
  padding: 0;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  transform: scale(0.93) translateY(20px);
  transition: transform 0.32s cubic-bezier(0.34,1.5,0.64,1);
}
.gallery-overlay.is-open .gallery-modal {
  transform: scale(1) translateY(0);
}
.gallery-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #4b5563;
  transition: color 0.2s ease, transform 0.2s ease;
}
.gallery-close:hover { color: #ef4444; transform: scale(1.1); }
.gallery-viewport {
  width: 100%;
  height: clamp(16rem, 56.25vw, 31.5rem);
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #111827;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: var(--gallery-gradient, linear-gradient(135deg,#c084fc,#f472b6));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}
.gallery-slide.active { opacity: 1; z-index: 1; }
.gallery-slide.slide-out-left { opacity: 0; transform: translateX(-40px); }
.gallery-slide.slide-out-right { opacity: 0; transform: translateX(40px); }
.gallery-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-slide.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.22);
  pointer-events: none;
}
.gallery-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.gallery-deco-line {
  left: 1.5rem;
  height: 0.5rem;
  border-radius: 999px;
}
.gallery-deco-line-long {
  top: 1.5rem;
  width: 8rem;
  background: rgba(255,255,255,0.3);
}
.gallery-deco-line-short {
  top: 3rem;
  width: 5rem;
  background: rgba(255,255,255,0.2);
}
.gallery-deco-tile {
  right: 1.5rem;
  bottom: 1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.gallery-deco-boxes {
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.gallery-deco-boxes span {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.3);
}
.gallery-slide-copy {
  position: relative;
  z-index: 2;
  max-width: min(36rem, 100%);
  padding: 0 1rem;
}
.gallery-slide-copy h4 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.25rem);
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.gallery-slide-copy p {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
.gallery-slide-copy .gallery-slide-body {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 34rem;
  margin-inline: auto;
}
.gallery-bar {
  width: 100%;
  padding: 1.25rem 1.75rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}
.gallery-bar-left {
  min-width: 0;
  justify-self: start;
  text-align: left;
}
.gallery-slide-title { margin: 0; font-weight: 700; font-size: 1rem; color: #111827; }
.gallery-slide-sub { margin: 0.18rem 0 0; font-size: 0.875rem; color: #6b7280; }
.gallery-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}
.gallery-counter { font-size: 0.875rem; color: #9ca3af; font-weight: 500; white-space: nowrap; }
.gallery-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #374151;
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery-nav-btn:hover { background: #fce7f3; color: #db2777; }
.gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding-bottom: 1rem;
  padding-top: 0.25rem;
}
.gallery-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d1d5db;
  transition: width 0.25s ease, background 0.25s ease;
  padding: 0;
}
.gallery-dot:hover:not(.active) { background: #9ca3af; }
.gallery-dot.active { width: 1.5rem; background: linear-gradient(135deg,#6a0dad 0%,#e91e8c 50%,#f5a623 100%); }
.gallery-ext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}
.gallery-ext:hover { background: rgba(255,255,255,0.4); }
.gallery-ext-prev { left: 1rem; }
.gallery-ext-next { right: 1rem; }

/* ── Clients (full-color sliding logo marquee) ── */
.corner-clients {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #faf5ff, #fdf2f8 50%, #fff7ed);
  overflow: hidden;
}
.corner-clients .logos-marquee {
  margin-top: 2.4rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.corner-clients .logos-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: scroll-left 34s linear infinite;
}
.corner-clients .logos-marquee:hover .logos-track { animation-play-state: paused; }
.corner-clients .logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.corner-clients .logo-item img {
  height: 4rem;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}
.corner-clients .logo-item img:hover {
  transform: scale(1.06);
}

/* ── Testimonials marquee (matches homepage) ───────────────── */
.corner-testimonials .marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.corner-testimonials .marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.corner-testimonials .marquee-left  { animation: scroll-left 34s linear infinite; }
.corner-testimonials .marquee-right { animation: scroll-right 30s linear infinite; }

/* Pause on hover */
.corner-testimonials .marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.corner-testimonials .testimonial-card {
  width: 320px;
  flex-shrink: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.corner-testimonials .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(139,92,246,0.12);
}
.corner-testimonials .testimonial-card p          { color: #f59e0b; font-size: 1rem; letter-spacing: 0.08em; }
.corner-testimonials .testimonial-card blockquote { margin: 0.45rem 0 0.9rem; color: #4b5563; font-size: 0.9rem; }
.corner-testimonials .testimonial-card h4         { font-size: 0.95rem; }
.corner-testimonials .testimonial-card span       { font-size: 0.8rem; color: #8b5cf6; font-weight: 700; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.corner-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #7c3aed, #ec4899 52%, #fb923c);
}
.corner-cta-inner { text-align: center; position: relative; z-index: 2; }
.corner-cta .section-title,
.corner-cta p { color: #fff; }
.corner-cta p {
  max-width: 42rem;
  margin: 1rem auto;
  color: rgba(255, 255, 255, 0.85);
}
.corner-cta .hero-actions {
  justify-content: center;
  align-items: center;
}
.corner-cta .hero-actions .btn { min-width: 12.5rem; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-a { width: 250px; height: 250px; top: 35px; left: -55px; background: rgba(251, 113, 133, 0.45); }
.orb-b { width: 250px; height: 250px; right: -55px; bottom: 10px; background: rgba(253, 186, 116, 0.55); }
.orb-c { width: 280px; height: 280px; left: -110px; top: -110px; background: rgba(255, 255, 255, 0.17); }
.orb-d { width: 280px; height: 280px; right: -110px; bottom: -120px; background: rgba(255, 255, 255, 0.17); }

@media (max-width: 1000px) {
  .corner-service-grid,
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .gallery-ext-prev { left: 2rem; }
  .gallery-ext-next { right: 2rem; }
}

@media (max-width: 700px) {
  .corner-service-grid,
  .portfolio-grid { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  .gallery-ext { display: none; }
  .gallery-bar {
    grid-template-columns: 1fr;
    padding: 1rem 1.1rem 0.85rem;
    gap: 0.8rem;
  }
  .gallery-bar-left,
  .gallery-bar-right {
    width: 100%;
  }
  .gallery-bar-right { justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════════════════
   Location / Map Section
   ═══════════════════════════════════════════════════════════════ */
.corner-map {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff7ed 0%, #fff1f2 55%, #fdf2f8 100%);
}

/* Decorative background orbs */
.corner-map-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.corner-map-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.corner-map-orb--a {
  width: 500px;
  height: 500px;
  top: -140px;
  right: -100px;
  background: rgba(251, 113, 133, 0.28);
}
.corner-map-orb--b {
  width: 380px;
  height: 380px;
  bottom: -100px;
  left: -80px;
  background: rgba(253, 186, 116, 0.32);
}

/* Two-column layout */
.corner-map-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: center;
}

/* ── Info panel ───────────────────────────────────────────────── */
.corner-map-info .badge { margin-bottom: 1.1rem; }
.corner-map-info .section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
}

.corner-map-copy {
  color: var(--text-body);
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* Contact items stack */
.corner-map-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.25rem;
}

.corner-map-contact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Coloured icon pill */
.corner-map-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #fda4af 0%, #f43f5e 100%);
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.28);
}
.corner-map-icon--phone {
  background: linear-gradient(135deg, #fed7aa 0%, #fb923c 100%);
  box-shadow: 0 4px 14px rgba(251, 146, 60, 0.28);
}
.corner-map-icon--email {
  background: linear-gradient(135deg, #f5d0fe 0%, #d946ef 100%);
  box-shadow: 0 4px 14px rgba(217, 70, 239, 0.25);
}

.corner-map-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.corner-map-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #db2777;
}
.corner-map-contact-text span:last-child { color: var(--text-body); font-size: 0.93rem; }
.corner-map-contact-text a {
  color: var(--text-body);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color 0.2s;
}
.corner-map-contact-text a:hover { color: #f43f5e; }

/* Directions CTA button */
.corner-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.75rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 22px rgba(244, 63, 94, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.corner-map-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244, 63, 94, 0.42);
}

/* ── Map frame ────────────────────────────────────────────────── */
.corner-map-frame-wrap { position: relative; }

.corner-map-glow {
  position: absolute;
  inset: -28px;
  background: radial-gradient(ellipse at 50% 50%, rgba(244, 63, 94, 0.16), transparent 65%);
  border-radius: 2.5rem;
  pointer-events: none;
  z-index: 0;
}

.corner-map-frame {
  position: relative;
  z-index: 1;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #f8fafc;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.13),
    0 0 0 1.5px rgba(244, 63, 94, 0.16);
}

/* Chrome top bar (gradient like the service card tops) */
.corner-map-chrome {
  background: linear-gradient(90deg, #f43f5e 0%, #fb923c 100%);
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.44rem;
}

.corner-map-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.corner-map-dot--r { background: rgba(255,255,255,0.60); }
.corner-map-dot--y { background: rgba(255,255,255,0.38); }
.corner-map-dot--g { background: rgba(255,255,255,0.22); }

.corner-map-chrome-label {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.92);
}

/* Map iframe container */
.corner-map-viewport {
  width: 100%;
  height: 430px;
  position: relative;
}
.corner-map-viewport iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Placeholder shown when no embed URL is set */
.corner-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.75rem;
  background: #fef2f2;
  color: #f43f5e;
}
.corner-map-placeholder i  { font-size: 2.5rem; opacity: 0.6; }
.corner-map-placeholder p  { font-size: 0.85rem; opacity: 0.7; margin: 0; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .corner-map-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .corner-map-info .section-title { font-size: 1.75rem; }
  .corner-map-viewport { height: 340px; }
}

@media (max-width: 600px) {
  .corner-map-viewport { height: 260px; }
  .corner-map-btn { width: 100%; justify-content: center; }
}
