@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --site-ink: #173042;
  --site-ink-soft: #5f7383;
  --site-brand: #163f63;
  --site-brand-deep: #102f4a;
  --site-accent: #8fc63f;
  --site-accent-soft: #eef7dd;
  --site-surface: #ffffff;
  --site-surface-soft: #f6fafc;
  --site-line: #dbe7ee;
  --site-shadow: 0 22px 54px rgba(18, 52, 74, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #f3f8fb 0, #ffffff 220px);
  color: var(--site-ink);
  font-family: "Manrope", "Open Sans", sans-serif;
}

p,
li,
label,
input,
select,
textarea {
  color: var(--site-ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: var(--site-brand);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--site-ink);
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

img {
  max-width: 100%;
}

.line {
  max-width: 1180px;
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.background-white {
  background: transparent !important;
}

.background-primary,
.background-secondary,
.background-gallery,
.background-dark {
  background: linear-gradient(135deg, var(--site-brand-deep), #1f587a) !important;
}

.background-light {
  background: transparent !important;
}

.top-bar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.96));
  border-bottom: 1px solid rgba(22, 63, 99, 0.08);
}

.top-bar-contact p {
  color: var(--site-ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.social-brand a,
.top-bar-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border-radius: 50%;
  background: rgba(22, 63, 99, 0.06);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-brand a:hover,
.top-bar-social a:hover {
  transform: translateY(-2px);
  background: rgba(143, 198, 63, 0.18);
}

.facebook,
.instagram,
.whatsapp-fa,
.top-bar-social i {
  color: var(--site-brand);
}

nav.background-white.background-primary-hightlight {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(22, 63, 99, 0.08);
  box-shadow: 0 14px 34px rgba(18, 52, 74, 0.07);
  backdrop-filter: blur(10px);
}

.logo img {
  width: auto;
  max-height: 62px;
}

.top-nav li a,
.background-white .top-nav li a {
  color: var(--site-ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85em 1.1em;
}

.top-nav li {
  position: relative;
}

.background-primary-hightlight .top-nav .active-item > a,
.background-primary-hightlight .top-nav li a:hover,
.background-primary-hightlight .aside-nav li a:hover,
.background-primary-hightlight .aside-nav > ul > li.active-item > a:link,
.background-primary-hightlight .aside-nav > ul > li.active-item > a:visited {
  background: rgba(143, 198, 63, 0.14) !important;
  color: var(--site-brand) !important;
  border-radius: 999px;
}

.top-nav ul ul {
  background: #ffffff;
  border: 1px solid rgba(22, 63, 99, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(17, 44, 64, 0.14);
  padding: 12px;
}

.top-nav ul ul li {
  border: 0;
}

.top-nav ul ul li a {
  border-radius: 12px;
}

@media (min-width: 769px) {
  .top-nav {
    overflow: visible;
  }

  .top-nav > ul > li {
    overflow: visible;
  }

  .top-nav li ul {
    display: block;
    min-width: 240px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    visibility: hidden;
  }

  .top-nav li:hover > ul,
  .top-nav li:focus-within > ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    z-index: 30;
  }

  .top-nav > ul > li > ul {
    left: 0;
    margin-top: 12px;
    top: 100%;
  }

  .top-nav li:hover > ul ul,
  .top-nav li:focus-within > ul ul {
    left: calc(100% + 12px);
    margin: 0;
    top: 0;
  }
}

main[role="main"] article > header.section {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  min-height: 380px;
  border-radius: 0 0 30px 30px;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: inset 0 0 0 999px rgba(11, 37, 58, 0.42);
}

main[role="main"] article > header.section h1,
main[role="main"] article > header.section p,
main[role="main"] article > header.section .line,
main[role="main"] article > header.section .s-12 {
  position: relative;
  z-index: 1;
}

main[role="main"] article > header.section h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  letter-spacing: -0.05em;
}

main[role="main"] article > header.section p {
  color: rgba(255, 255, 255, 0.92);
}

.hero-banner {
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 84px 24px !important;
  box-shadow:
    inset 0 0 0 999px rgba(11, 37, 58, 0.48),
    inset 0 -120px 120px rgba(10, 34, 51, 0.24);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 198, 63, 0.34) 0, rgba(143, 198, 63, 0) 70%);
  z-index: 0;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
  transform: rotate(16deg);
  z-index: 0;
}

.hero-banner .line,
.hero-banner .hero-banner-inner {
  width: 100%;
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-banner .text-white {
  color: #ffffff !important;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-banner h1 {
  margin-bottom: 16px !important;
}

.hero-banner p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.06rem;
  line-height: 1.9;
}

.page-about .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.52), rgba(31, 88, 122, 0.34)), url('../img/about-us.JPG');
}

.page-contact .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.55), rgba(31, 88, 122, 0.34)), url('../img/contact us.jpg');
}

.page-privacy .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.62), rgba(31, 88, 122, 0.34)), url('../img/about-us.JPG');
}

.page-gallery .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.55), rgba(31, 88, 122, 0.34)), url('../img/portfolio/thumb-11.jpg');
}

.page-videos .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.55), rgba(31, 88, 122, 0.34)), url('../img/01-boxed.jpg');
}

.page-team .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.52), rgba(31, 88, 122, 0.28)), url('../img/img_008.jpg');
}

.page-prpkit .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.54), rgba(31, 88, 122, 0.26)), url('../img/img_009.jpg');
}

.page-prptube .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.54), rgba(31, 88, 122, 0.26)), url('../img/img_009.jpg');
}

.page-classic .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.56), rgba(31, 88, 122, 0.22)), url('../img/img_010.jpg');
}

.page-cocktail .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.56), rgba(31, 88, 122, 0.22)), url('../img/img_011.jpg');
}

.page-advanced .hero-banner {
  background-image: linear-gradient(135deg, rgba(16, 47, 74, 0.56), rgba(31, 88, 122, 0.24)), url('../img/img_012.jpg');
}

.hero-quote {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 600;
}

.hero-quote strong {
  color: #ffffff;
}

.team-card,
.product-tabs,
.product-sidebar,
.video-box,
.customform,
.content-card,
.about-stat-card,
.footer-map,
.product-image-carousel,
.event-box .line > .margin,
.section.background-white > .line > .margin > .s-12.m-12.l-6:first-child,
.section.background-white > .line > .margin > .s-12.m-12.l-6:last-child {
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  box-shadow: var(--site-shadow);
}

.team-card,
.product-tabs,
.product-sidebar,
.video-box,
.customform,
.content-card,
.about-stat-card,
.product-image-carousel {
  border-radius: 26px;
}

.team-card,
.content-card,
.about-stat-card {
  padding: 30px;
}

.team-card {
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(18, 52, 74, 0.14);
}

.team-card img {
  width: 132px !important;
  height: 132px !important;
  object-fit: cover;
  border: 4px solid #f3f8fb;
  box-shadow: 0 10px 24px rgba(18, 52, 74, 0.12);
}

.product-sidebar {
  padding: 26px;
}

.product-menu {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.product-menu li {
  margin-bottom: 10px;
  padding: 12px 14px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  background: #f8fbfd;
  color: var(--site-ink);
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-menu li:hover {
  background: var(--site-accent-soft);
  transform: translateX(2px);
}

.product-image-carousel {
  padding: 18px;
}

.product-image-carousel .item img {
  border-radius: 18px !important;
  background: linear-gradient(180deg, #f7fbfd, #eef5f8);
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.product-tabs {
  padding: 28px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 12px 18px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  background: #f2f7fa;
  color: var(--site-brand);
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--site-brand);
  color: #ffffff;
}

.tab-content {
  padding: 24px;
  border-radius: 20px;
  background: var(--site-surface-soft);
  border: 1px solid var(--site-line);
}

.product-price-btn,
.button,
.submit-form.button,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--site-brand), #265f84) !important;
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(22, 63, 99, 0.18);
}

.button:hover,
.submit-form.button:hover,
.submit-btn:hover {
  opacity: 0.95;
}

.customform {
  padding: 30px;
}

.customform input,
.customform select,
.customform textarea,
#captcha-answer {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: #f8fbfd;
  color: var(--site-ink);
  box-shadow: none;
}

.customform textarea {
  min-height: 150px;
}

.customform input:focus,
.customform select:focus,
.customform textarea:focus,
#captcha-answer:focus {
  border-color: rgba(22, 63, 99, 0.25);
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 198, 63, 0.16);
}

.video-box {
  overflow: hidden;
  padding: 0;
}

.video-box video {
  width: 100%;
  display: block;
}

.event-box .line {
  max-width: 1180px;
}

.footer-blue,
footer .background-dark {
  background: linear-gradient(135deg, #0f2940, #163f63) !important;
  color: rgba(255, 255, 255, 0.88);
}

.footer-blue h4,
footer .background-dark h4,
.footer-blue p,
footer .background-dark p,
.footer-blue li,
footer .background-dark li {
  color: rgba(255, 255, 255, 0.9);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map {
  width: 100% !important;
  max-width: 360px;
  height: 220px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-link,
footer a,
footer a:link,
footer a:visited {
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 24px;
}

.about-section-heading {
  margin-bottom: 18px;
  font-size: 2.1rem;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--site-accent-soft);
  color: #50761d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-list,
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-list li,
.feature-list li {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbfd;
  border: 1px solid var(--site-line);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.about-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--site-brand);
  font-size: 1.8rem;
}

.privacy-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 110px;
}

.privacy-sidebar h3,
.privacy-card h3 {
  margin-bottom: 16px;
}

.privacy-toc {
  margin: 0;
  padding-left: 20px;
}

.privacy-toc li {
  margin-bottom: 8px;
  color: var(--site-ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.privacy-toc a {
  color: var(--site-ink);
  font-weight: 700;
}

.privacy-meta {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: #f8fbfd;
}

.privacy-meta strong,
.privacy-meta span {
  display: block;
}

.privacy-meta strong {
  margin-bottom: 4px;
  color: var(--site-brand);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-meta span {
  color: var(--site-ink);
  font-weight: 800;
}

.privacy-card {
  padding: 38px;
}

.policy-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--site-line);
  scroll-margin-top: 120px;
}

.policy-section:first-child {
  padding-top: 0;
}

.policy-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-section h3 {
  color: var(--site-brand);
  font-size: 1.45rem;
}

.policy-section h4 {
  margin: 22px 0 10px;
  color: var(--site-ink);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.policy-list li {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: #f8fbfd;
  line-height: 1.45;
}

.privacy-contact {
  margin-top: 6px;
  padding: 28px;
  border: 1px solid rgba(143, 198, 63, 0.32);
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fbfd, var(--site-accent-soft));
}

@media (max-width: 1024px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .top-nav li a,
  .background-white .top-nav li a {
    padding: 0.7em 0.8em;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .privacy-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .top-nav {
    overflow: hidden;
  }

  .top-nav ul ul {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  body {
    background: #f7fbfd;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .logo img {
    max-height: 52px;
  }

  main[role="main"] article > header.section {
    padding: 84px 20px;
    border-radius: 0 0 22px 22px;
  }

  .hero-banner {
    min-height: 320px;
    padding: 68px 18px !important;
  }

  .hero-banner::after {
    width: 110px;
    height: 110px;
    border-radius: 20px;
  }

  .hero-banner p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .team-card,
  .product-tabs,
  .product-sidebar,
  .customform,
  .content-card,
  .about-stat-card {
    padding: 22px;
  }

  .product-tabs,
  .product-sidebar,
  .product-image-carousel {
    margin-bottom: 22px;
  }

  .tab-content {
    padding: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    padding: 22px;
  }

  .policy-list {
    grid-template-columns: 1fr;
  }

  .footer-map {
    max-width: 100%;
  }
}
