﻿@font-face {
  font-family: 'Tenor Sans';
  src: url('fonts/TenorSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lancelot';
  src: url('fonts/Lancelot-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Forum';
  src: url('fonts/Forum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #6fd1d4;
  --teal-dark: #45b7ba;
  --dark: #0f1c1f;
  --muted: #6c7a84;
  --bg: #ffffff;
  --white: #ffffff;
  --card: #ffffff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --radius: 14px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Forum', serif;
  color: var(--dark);
  line-height: 1.5;
}

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

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

.container {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-family: 'Tenor Sans', serif;
  font-size: 36px;
  color: var(--dark);
}

.section-copy {
  max-width: 620px;
  color: var(--muted);
  margin: 10px 0 0;
}

.accent { color: var(--teal); }

.btn-primary {
  border: none;
  background: var(--teal);
  color: #083335;
  font-family: 'Tenor Sans', serif;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(111, 209, 212, 0.35);
}

.btn-secondary {
  border: 2px solid var(--teal);
  background: var(--teal);`n  color: #0a2021;
  font-family: 'Tenor Sans', serif;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 14px;
  cursor: pointer;
}

/* Hero */
.hero-shell {
  display: flex;
  justify-content: center;
  padding: 10px 12px 12px;
  background: var(--bg);
}

.hero-card {
  position: relative;
  width: min(1340px, 98.5vw);
  height: clamp(530px, 65vh, 690px);
  border-radius: 14px 14px 0 14px;
  overflow: hidden;
  background: #000;

}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/banner.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(111, 209, 212, 0.82) 0%, rgba(111, 209, 212, 0.65) 26%, rgba(0, 0, 0, 0.68) 80%);
}

.hero-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 2;
}

.hero-logo img {
  height: 60px;
  width: auto;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.menu-btn span {
  width: 62%;
  height: 3px;
  background: #0f1c1f;
  border-radius: 4px;
  display: block;
}

.hero-content {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  bottom: 0;
  z-index: 2;
  max-width: 700px;
}

.hero-kicker {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  margin: 0;
  font-family: 'Tenor Sans', serif;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
  position: absolute;
  bottom: 20px;
  margin: 0;
  font-family: 'Lancelot', serif;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 140px;
  width: 150px;
  height: 150px;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
}

.badge-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.badge-ring svg {
  width: 100%;
  height: 100%;
  animation: badge-rotate 14s linear infinite;
  transform-origin: center;
  transition: fill 0.25s ease;
}

.badge-ring svg circle,
.badge-ring svg text {
  transition: fill 0.25s ease;
}

.badge-center {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: #6fd1d4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.badge-inner {
  width: 70%;
  height: 70%;
  display: grid;
  place-items: center;
}

.badge-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes badge-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-ring:hover svg circle {
  fill: #6fd1d4;
}

.badge-ring:hover text {
  fill: #ffffff;
}

.badge-ring:hover .badge-center {
  background: #6fd1d4;
}

.hero-cta {
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 2;
  padding: 8px 10px;
  display: flex;
  align-items: center;
}

.hero-cta::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 78px;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: -1;
  margin-bottom: -22px;
  margin-right: -30px;
}

.btn-explore {
    border: none;
    background: #5fc7c9;
    color: #0d1b1d;
    font-family: 'Tenor Sans', serif;
    font-size: 17px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: -7px;
}

.arrow-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #5fc7c9;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 2px #5fc7c9;
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .section { padding: 54px 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .stats__grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .hero-card { height: clamp(550px, 78vh, 700px); border-radius: 16px; }
  .hero-content { top: 0; bottom: 0; max-width: 90%; }
  .hero-kicker { top: 45%; }
  .hero-title { bottom: 72px; }
  .hero-badge { right: 16px; bottom: 170px; width: 118px; height: 118px; }
}

@media (max-width: 560px) {
  .hero-shell { padding: 16px 10px; }
  .hero-card { height: 810px; border-radius: 18px; }
  .hero-top { top: 12px; left: 12px; right: 12px; }
  .hero-logo img { height: 68px; }
  .menu-btn { width: 50px; height: 50px; }
  .hero-content { top: 0; bottom: 0; left: 18px; right: 18px; }
  .hero-kicker { font-size: 26px; line-height: 1.3; top: 44%; }
  .hero-title { font-size: 36px; bottom: 96px; }
  .hero-badge { width: 122px; height: 122px; bottom: 230px; right: 12px; }
  .hero-cta { right: 12px; bottom: 14px; }
  .btn-explore { font-size: 17px; padding: 12px 16px; border-radius: 20px; }
  .arrow-circle { width: 34px; height: 34px; font-size: 16px; }
  .behind__inner { flex-direction: column; align-items: flex-start; }
  .stats__cta { width: 100%; justify-self: stretch; }
}/* Sections */
.behind {
  background: #fdfefe;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.behind__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.stats {
  background: #dff4f6;
  padding: 52px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.stat {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-family: 'Tenor Sans', serif;
}

.stat__value { font-size: 28px; font-weight: 700; }
.stat__label { color: var(--muted); font-weight: 600; }

.stats__cta { justify-self: end; padding: 14px 24px; }

.brands .brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.brand-chip {
  background: #111;
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  font-family: 'Tenor Sans', serif;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.agency__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.tile {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tile__media { position: relative; }

.tile__media img { width: 100%; height: 180px; object-fit: cover; }

.tile__media.video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,0.35) 100%);
}

.play {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--teal);
  color: #fff;
  width: 48px;  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}

.tile__body { padding: 16px; display: grid; gap: 8px; }

.pill {
  align-self: start;
  padding: 6px 12px;
  border-radius: 14px;
  background: #f0f4f4;
  color: var(--muted);
  font-family: 'Tenor Sans', serif;
  font-weight: 700;
  font-size: 12px;
}

.categories .card,
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card img { width: 100%; height: 180px; object-fit: cover; }

.card__body { padding: 16px; display: grid; gap: 8px; }

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.news-card img { width: 100%; height: 170px; object-fit: cover; }

.news-card__body { padding: 14px; display: grid; gap: 8px; }

.tag {
  display: inline-flex;
  padding: 4px 10px;
  background: #e7f8f8;
  color: #13888b;
  border-radius: 22px;
  font-family: 'Tenor Sans', serif;
  font-weight: 700;
  font-size: 12px;
}

.accordion { display: grid; gap: 12px; }

.accordion__item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.accordion__header {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Tenor Sans', serif;
  font-weight: 700;
  cursor: pointer;
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--muted);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion__panel--open {
  max-height: 260px;
  padding: 0 16px 16px;
}

.accordion__icon { font-weight: 800; font-size: 18px; }

.testimonials {
  background: #eff6f6;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: grid;
  gap: 12px;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Tenor Sans', serif;
  font-weight: 800;
}

.muted { color: var(--muted); }

.footer {
  background: #0f2c30;
  color: #dce9eb;
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding-bottom: 24px;
}

.footer__logo { width: 120px; height: auto; }

.footer__title { margin: 0 0 10px; font-family: 'Tenor Sans', serif; }

.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }

.footer__links a { color: #dce9eb; }

.contact-form { display: grid; gap: 10px; }

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Forum', serif;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0 26px;
  margin-top: 10px;
}

.footer__bottom-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__map {
  width: 260px;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
