/* =============================================
   SELF-HOSTED FONTS
   ============================================= */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(fonts/inter-tight-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/plus-jakarta-latin.woff2) format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/roboto-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Host Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/host-grotesk-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =============================================
   DESIGN SYSTEM TOKENS
   ============================================= */
:root {
  /* Colors - Backgrounds */
  --bg-primary: #012022;
  --bg-secondary: #022628;
  --bg-deep: #043437;
  --bg-card: #F7F8FA;
  --bg-glass: rgba(255, 255, 255, 0.06);
  --bg-input: #FCFCFC;

  /* Colors - Accent */
  --accent-teal: #007A82;
  --accent-teal-hover: #006b72;
  --accent-teal-dark: #003d41;
  --accent-cyan: #06DDEB;
  --accent-orange: #FF4D00;
  --accent-green: #007E40;
  --accent-green-light: #03B69C;
  --accent-submit: #09D690;
  --accent-submit-border: #0A7852;
  --accent-submit-hover: #08c484;

  /* Colors - Text */
  --text-white: #FFFFFF;
  --text-dark: #212121;
  --text-black: #070707;
  --text-deep-green: #004F54;
  --text-gray-1: #666666;
  --text-gray-2: #575757;
  --text-gray-3: #B9B9B9;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-contact: #F6F6F6;
  --text-input: #1A1A1A;
  --text-submit: #01062A;

  /* Colors - Borders */
  --border-light: #EBEBEB;
  --border-mid: #E5E5E5;
  --border-gray: #DEDEDE;
  --border-divider: #E0E0E0;
  --border-peach: #FFF0E9;
  --border-dark: #1B1B1B;

  /* Typography - Font Families */
  --font-jakarta: 'Plus Jakarta Sans', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-inter-tight: 'Inter Tight', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
  --font-arial: Arial, Helvetica, sans-serif;
  --font-sf: -apple-system, BlinkMacSystemFont, 'SF Pro', sans-serif;
  --font-host-grotesk: 'Host Grotesk', sans-serif;

  /* Spacing */
  --container-max: 1300px;
  --container-wide: 1440px;
  --section-px: max(40px, calc((100vw - var(--container-max)) / 2));

  /* Border Radii */
  --radius-nav: 56px;
  --radius-btn-lg: 48px;
  --radius-pill: 30px;
  --radius-badge: 32px;
  --radius-overlay: 20px;
  --radius-card: 12px;
  --radius-card-lg: 18.88px;
  --radius-stat: 22px;
  --radius-input: 4.19px;
  --radius-app-card: 24.28px;

  /* Effects */
  --blur-nav: blur(44px);
  --blur-badge: blur(108px);
  --blur-card: blur(16px);
  --shadow-play: 0px 30px 60px 0px rgba(0, 0, 0, 0.16);
  --shadow-store: inset 0px 3px 5px 0px rgba(255, 255, 255, 0.2);
  --shadow-team-card: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);

  /* Hover States */
  --hover-white: #f0f0f0;
  --hover-white-dark: #e8e8e8;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

picture {
  display: contents;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-inter);
  background-color: var(--bg-primary);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 1294px;
  padding: 0 40px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

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

.nav-links-wrapper {
  flex-shrink: 0;
  border-radius: var(--radius-nav);
  backdrop-filter: var(--blur-nav);
  -webkit-backdrop-filter: var(--blur-nav);
  background: var(--bg-glass);
  padding: 10px 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: var(--text-white);
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.8;
}

/* ===== DROPDOWN SUBMENU ===== */
.nav-dropdown {
  position: relative;
}

.nav-link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-chevron {
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  padding: 8px 0;
  background: rgba(1, 32, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1001;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Invisible bridge to prevent hover-gap loss */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  padding: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-cyan, #00C2A8);
}

.nav-cta-wrapper {
  flex-shrink: 0;
}
.nav-cta-wrapper--mobile {
  display: none;
}
.btn-get-start {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  padding: 0 24px;
  height: 48px;
  background: var(--accent-teal);
  border-radius: var(--radius-btn-lg);
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-white);
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-get-start:hover {
  background: var(--accent-teal-hover);
}
/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: clamp(600px, 47.2vw, 907px);
  padding-top: clamp(120px, 13vw, 251px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
  object-position: center top;
}

.hero-shape-right {
  position: absolute;
  top: 7587px;
  right: 0;
  width: min(1145px, 60vw);
  height: auto;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
}

.video-palm-tree {
  position: absolute;
  top: -67px;
  left: -166px;
  width: min(999px, 52vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 718px;
  margin-left: max(40px, calc((100vw - 1300px) / 2));
}

.hero-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 76.84px);
  line-height: 1.125;
  color: var(--text-white);
  margin-bottom: 18px;
}

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

.hero-subtitle {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.601;
  color: var(--text-white);
  max-width: 622px;
  margin-bottom: 47px;
}

.hero-cta {
  display: flex;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 10px 10px 26px;
  background: var(--accent-teal);
  border-radius: var(--radius-pill);
  font-family: var(--font-jakarta);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--text-white);
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-teal-hover);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon img {
  width: 34px;
  height: 34px;
}

/* Clients */
.clients-section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1174px;
  margin: 73px auto 0;
  padding: 0 24px;
}

.clients-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 486px;
  width: 100%;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4.05px;
  padding: 6.07px 8.09px;
  border-radius: var(--radius-badge);
  backdrop-filter: var(--blur-badge);
  -webkit-backdrop-filter: var(--blur-badge);
  background: var(--bg-glass);
}

.badge-text {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: var(--accent-cyan);
}

.badge-text-sm {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 12.14px;
  line-height: 1.333;
  color: var(--text-white);
}

.badge-text-client {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.333;
  color: var(--accent-green-light);
}

.clients-title {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.167;
  color: var(--text-white);
  text-align: center;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1174px;
}

.client-logo {
  height: 32px;
  width: auto;
}

/* Logo carousel */
.clients-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  margin: 16px 0;
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  will-change: transform;
}

.client-logo-marquee {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.client-logo-marquee:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Team Card */
.team-card {
  position: absolute;
  left: 52%;
  top: clamp(450px, 34.2vw, 657px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--text-white);
  border-radius: var(--radius-card);
  padding: 14px;
  width: min(337px, 25vw);
  box-shadow: var(--shadow-team-card);
}

.team-card-avatars {
  display: flex;
  align-items: center;
}

.avatar-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--text-white);
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -8px;
}

.avatar-dot:first-child {
  margin-left: 0;
}

.avatar-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 36px;
  background: var(--accent-green);
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 8px;
  line-height: 2;
  color: var(--text-white);
  margin-left: -8px;
  flex-shrink: 0;
}

.team-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card-title {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.444;
  color: var(--text-black);
}

.team-card-desc {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.429;
  color: var(--text-gray-2);
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px var(--section-px);
  z-index: 2;
}

.video-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 80px;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-pill);
}

.video-badge span {
  font-family: var(--font-jakarta);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.video-heading {
  font-family: var(--font-jakarta);
  font-weight: 600;
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.208;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text-white);
}

.video-card-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
}

.play-btn {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.play-circle {
  width: clamp(80px, 6.25vw, 120px);
  height: clamp(80px, 6.25vw, 120px);
  border-radius: 50%;
  background: var(--text-white);
  box-shadow: var(--shadow-play);
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle:hover {
  opacity: 0.9;
}

.play-logo-animated {
  animation: logoBreathePulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(6, 221, 235, 0.4));
}

@keyframes logoBreathePulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

.video-card {
  border-radius: var(--radius-overlay);
  overflow: hidden;
  width: 100%;
  height: clamp(400px, 38.5vw, 740px);
}

.video-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  position: relative;
  background: var(--bg-secondary);
  padding: 81px var(--section-px);
  overflow: hidden;
}

.services-bg-shape {
  position: absolute;
  top: -30px;
  right: -264px;
  width: min(1145px, 60vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.services-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 65px;
}

.services-title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.208;
  text-align: center;
  color: var(--text-white);
  max-width: 770px;
}

.services-desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  text-align: center;
  color: var(--text-white);
  max-width: 578px;
}

.services-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
}

.services-left {
  width: 64.4%;
}

.services-image {
  width: 100%;
  /* height: clamp(400px, 33vw, 635px); */
  object-fit: contain;
  border-radius: var(--radius-overlay);
}

.services-right {
  position: absolute;
  right: 0;
  top: 84px;
  width: 46.2%;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  backdrop-filter: var(--blur-card);
  -webkit-backdrop-filter: var(--blur-card);
  transition: border-color 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--accent-cyan);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 23.33px;
  background: var(--accent-green);
  padding: 2px;
}

.service-icon img {
  width: 100%;
  height: 100%;
}

.service-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.service-name {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  color: var(--text-white);
}

.service-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: var(--text-muted);
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.why-section {
  position: relative;
  background: var(--bg-secondary);
  padding: 143px 0;
  overflow: hidden;
}

.why-bg-shape {
  position: absolute;
  top: -101px;
  left: 57.97%;
  width: min(1145px, 59.64%);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.why-content {
  position: relative;
  z-index: 1;
  max-width: 1066px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-header {
  text-align: center;
  margin-bottom: 101px;
}

.why-label {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 16.47px;
  line-height: 1.87;
  letter-spacing: 0.23em;
  color: var(--text-white);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.why-title {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: clamp(30px, 2.86vw, 54.91px);
  line-height: 1.172;
  color: var(--text-white);
  margin-bottom: 16px;
}

.why-desc {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 21.96px;
  line-height: 1.4;
  color: var(--text-white);
  max-width: 864px;
  margin: 0 auto;
}

.why-features {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 150px);
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.feature-block {
  text-align: center;
  max-width: 233px;
}

.feature-icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 23px;
}

.feature-icon-circle img {
  width: 35px;
  height: 35px;
}

.feature-name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 21.96px;
  line-height: 1.4;
  color: var(--text-white);
  margin-bottom: 10px;
}

.feature-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.41;
  color: var(--text-white);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4.5vw, 88px);
  padding: 0 20px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 297px;
  min-width: 200px;
  height: 220px;
  background: var(--text-white);
  border: 2.2px solid var(--border-peach);
  border-radius: var(--radius-stat);
  padding: 43px 20px 37px;
  text-align: center;
}

.stat-icon {
  margin-bottom: 32px;
}

.stat-icon img {
  width: 35px;
  height: 35px;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 21.96px;
  line-height: 1.4;
  color: var(--text-deep-green);
}

.stat-label {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 21.96px;
  line-height: 1.4;
  color: var(--text-deep-green);
}

/* =============================================
   PORTFOLIO SECTION
   ============================================= */
.portfolio-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.portfolio-bg-shape {
  position: absolute;
  top: 261px;
  right: -170px;
  width: min(998px, 52vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.portfolio-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 90px;
  padding: 0 20px;
}

.portfolio-title {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: clamp(30px, 2.77vw, 53.17px);
  line-height: 1.173;
  color: var(--text-white);
  margin-bottom: 16px;
}

.portfolio-subtitle {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 21.27px;
  line-height: 1.5;
  color: var(--text-white);
}

.portfolio-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 47px;
  max-width: 1334px;
  margin: 0 auto;
  padding: 0 20px;
}

.portfolio-card {
  display: flex;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  min-height: 0;
  padding: 20px 0;
}

.portfolio-card--reversed {
  flex-direction: row-reverse;
}

.portfolio-card--dark {
  color: var(--text-white);
}

.portfolio-card--light {
  background: var(--text-white);
  color: var(--text-dark);
}

.portfolio-card-media {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
  padding: 19px 0 19px 19px;
}

.portfolio-card--reversed .portfolio-card-media {
  padding: 19px 19px 19px 0;
}

.portfolio-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14.18px;
}

.portfolio-card-content {
  flex: 1;
  padding: 38px 57px;
  display: flex;
  flex-direction: column;
}

.portfolio-card-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.portfolio-logo-small {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  object-fit: contain;
}

.portfolio-logo-full {
  height: 35px;
  width: auto;
}

.portfolio-brand-name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.71;
}

.portfolio-card-desc {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 22.34px;
  line-height: 1.375;
  margin-bottom: 20px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1.18px solid var(--border-mid);
  border-radius: 100px;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-white);
}

.portfolio-tag--dark {
  background: var(--text-dark);
  color: var(--text-white);
  border-color: var(--border-mid);
}

.portfolio-tag--teal {
  background: var(--bg-primary);
  color: var(--text-white);
  border-color: var(--border-mid);
}

.portfolio-divider {
  width: 100%;
  height: 1px;
  background: var(--border-divider);
  margin-top: auto;
  margin-bottom: 12px;
}

.portfolio-stats {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.portfolio-stat-value {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 37.81px;
  line-height: 1.1;
}

.portfolio-stat-label {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 21.79px;
  line-height: 1.41;
}

.portfolio-services {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16.54px;
  line-height: 1.5;
}

.portfolio-services--dark {
  color: var(--text-dark);
}

.dot-separator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-orange);
  flex-shrink: 0;
}

/* =============================================
   REVIEWS / TESTIMONIALS
   ============================================= */
.reviews-section {
  position: relative;
  padding: 100px 0 120px;
  background: var(--bg-secondary);
  overflow: visible;
}

.reviews-bg-palm {
  position: absolute;
  left: -217px;
  top: -100px;
  width: min(1145px, 60vw);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--text-white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-pill);
}

.review-badge span {
  font-family: var(--font-jakarta);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-deep-green);
}

.reviews-title {
  font-family: var(--font-jakarta);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.208;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text-deep-green);
}

.reviews-grid {
  columns: 3;
  column-gap: 13px;
  max-width: 1620px;
  margin: 0 auto 40px;
  padding: 0 160px;
  position: relative;
  z-index: 1;
}

.review-card {
  position: relative;
  break-inside: avoid;
  margin-bottom: 13px;
}

.review-card-inner {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card--short .review-card-inner {
  min-height: 298px;
}

.review-card--medium .review-card-inner {
  min-height: 354px;
}

.review-card--tall .review-card-inner {
  min-height: 466px;
}

.review-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.review-brand-logo {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  object-fit: contain;
}

.review-brand-svg {
  height: 30px;
  width: auto;
}

.review-brand-name {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.71;
  color: var(--text-black);
}

.review-quote {
  font-family: var(--font-jakarta);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.556;
  color: var(--text-gray-1);
  flex: 1;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-author-name {
  font-family: var(--font-jakarta);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--text-deep-green);
}

.review-author-role {
  font-family: var(--font-jakarta);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--text-gray-1);
}

.review-quote-icon {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-quote-icon img {
  width: 18px;
  height: 15px;
}

.reviews-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.reviews-apptology-logo {
  height: 38px;
  width: auto;
}

.reviews-rating-img {
  height: 48px;
  width: auto;
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 10px 10px 26px;
  background: var(--text-deep-green);
  border-radius: var(--radius-pill);
  font-family: var(--font-jakarta);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--text-white);
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--accent-teal-dark);
}

/* =============================================
   MOBILE APP CTA SECTION
   ============================================= */
.app-card {
  position: relative;
  background: var(--bg-secondary);
  border-radius: var(--radius-app-card);
  max-width: 1295px;
  margin: 80px auto 0;
  overflow: hidden;
  min-height: 502px;
  z-index: 1;
}

.app-shape-left {
  position: absolute;
  top: -14px;
  left: -56px;
  width: 339px;
  height: 339px;
  z-index: 0;
  pointer-events: none;
}

.app-shape-right {
  position: absolute;
  top: 156px;
  right: -21px;
  width: 283px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.app-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0;
}

.app-phone {
  position: relative;
  flex: 0 0 44%;
  margin-left: 5.8%;
  margin-top: 12px;
  margin-bottom: -400px;
}

.phone-img {
  width: 100%;
  height: auto;
  display: block;
}

.app-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14.16px;
  padding: 78px 50px 60px 0;
  margin-left: -4.4%;
  position: relative;
  z-index: 2;
}

.app-label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 12.14px;
  line-height: 1.333;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.app-title {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 48.56px;
  line-height: 1.167;
  color: var(--text-white);
}

.app-desc {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 14.16px;
  line-height: 1.43;
  color: var(--text-white);
  max-width: 468px;
}

.app-stores {
  display: flex;
  gap: 6.72px;
  margin-top: 10px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 8.09px;
  padding: 12.14px 16.19px;
  background: var(--text-white);
  border-radius: 47.67px;
  box-shadow: inset 0px 2.97px 4.67px 0px rgba(255, 255, 255, 0.2);
  transition: opacity 0.2s;
}

.store-btn:hover {
  opacity: 0.9;
}

.store-icon {
  width: 24px;
  height: 30px;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-label {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 8.09px;
  line-height: 1.42;
  color: var(--text-black);
}

.store-label--gplay {
  font-size: 10.12px;
  line-height: 1.14;
}

.store-name {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 16.19px;
  line-height: 1.07;
  color: var(--text-black);
}

.store-name--gplay {
  font-family: var(--font-host-grotesk);
  font-weight: 500;
  font-size: 16.19px;
  line-height: 0.95;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  max-width: var(--container-max);
  margin: 100px auto;
  padding: 0 60px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-title {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 47.12px;
  line-height: 1.173;
  color: var(--text-contact);
  margin-bottom: 16px;
}

.contact-subtitle {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 18.85px;
  line-height: 1.5;
  color: var(--text-contact);
}

.contact-body {
  display: flex;
  gap: 60px;
}

.contact-left {
  flex: 1;
}

.contact-photo-wrap {
  position: relative;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.contact-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

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

.contact-social a {
  display: flex;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.contact-bio {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-contact);
  opacity: 0.8;
  margin-bottom: 24px;
}

.contact-schedule {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-white);
  text-decoration: underline;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-input);
  border-radius: 471px;
  color: var(--text-input);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15.7px;
  transition: background 0.2s;
}

.whatsapp-btn:hover {
  background: var(--hover-white);
}

.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

.contact-right {
  flex: 0 0 558px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15.7px;
  line-height: 1.5;
  color: var(--text-contact);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1.05px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-input);
  font-family: var(--font-inter);
  font-size: 14.66px;
  color: rgba(246, 246, 246, 0.6);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.select-arrow {
  width: 12px;
  height: 12px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-submit);
  border: 1.05px solid var(--accent-submit-border);
  border-radius: 2010px;
  color: var(--text-submit);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.submit-btn:hover {
  background: var(--accent-submit-hover);
}

.submit-btn img {
  width: 21px;
  height: 21px;
}

/* =============================================
   GIANT BRANDING TEXT
   ============================================= */
.branding-text {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(60px, 20.4vw, 392px);
  line-height: 0.85;
  letter-spacing: 0;
  color: var(--bg-deep);
  opacity: 0.9;
  text-align: left;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-secondary);
  padding: 120px 0 0;
  overflow: hidden;
  position: relative;
}

.footer-container {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  gap: 40px;
  margin-bottom: 120px;
}

.footer-col--brand {
  flex: 0 0 320px;
}

.footer-col {
  flex: 1;
}

.footer-logo {
  width: 176px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand-desc {
  font-family: var(--font-arial);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.54;
  color: var(--text-gray-3);
  margin-bottom: 20px;
}

.company-deck-btn {
  display: none; /* Hidden until company deck is updated — change to inline-flex to restore */
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 24px;
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--border-dark);
  background: var(--text-white);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}

.company-deck-btn:hover {
  background: var(--hover-white);
}

.company-deck-btn .deck-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--border-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-deck-btn .deck-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid var(--text-white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-2px);
}

.footer-heading {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 17.72px;
  line-height: 1.38;
  letter-spacing: 0.012em;
  color: var(--text-white);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links--no-heading {
  margin-top: 42px;
}

.footer-links a {
  font-family: var(--font-arial);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.36;
  letter-spacing: 0.01em;
  color: var(--text-gray-3);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-dark);
  padding: 24px 0 40px;
  margin-bottom: 90px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: flex;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-social img {
  height: 28px;
  width: auto;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
}

.footer-cta-label {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 19.53px;
  line-height: 1.64;
  color: var(--text-white);
}

.footer-cta-phone {
  font-family: var(--font-arial);
  font-weight: 700;
  font-size: 31.63px;
  line-height: 1.33;
  color: var(--text-white);
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 64px;
  background: var(--text-white);
  transition: background 0.2s;
}

.footer-cta-btn:hover {
  background: var(--hover-white-dark);
}

.footer-cta-btn svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-arial);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.46;
  color: var(--text-white);
  opacity: 0.6;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-company-note {
  font-family: var(--font-arial);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.46;
  color: var(--text-white);
  opacity: 0.6;
}

.footer-flags {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
}

.footer-team-avatars {
  display: flex;
  margin-left: 12px;
}

.footer-team-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-secondary);
  object-fit: contain;
  margin-left: -14px;
}

.footer-team-avatar:first-child {
  margin-left: 0;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Large desktops (1600px) */
@media (max-width: 1600px) {
  .team-card {
    left: 48%;
  }

  .reviews-grid {
    padding: 0 80px;
  }
}

/* Desktop (1440px) */
@media (max-width: 1440px) {
  .team-card {
    left: 45%;
    width: 300px;
  }

  .contact-section {
    padding: 0 40px;
  }

  .portfolio-cards {
    padding: 0 40px;
  }
}

/* Tablet landscape (1200px) */
@media (max-width: 1200px) {
  .services-left {
    width: 100%;
  }

  .services-image {
    height: 400px;
  }

  .services-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0;
  }

  .contact-body {
    flex-direction: column;
  }

  .contact-right {
    flex: 1;
  }

  .portfolio-card,
  .portfolio-card--reversed {
    flex-direction: column;
    min-height: auto;
  }

  .portfolio-card-media,
  .portfolio-card--reversed .portfolio-card-media {
    flex: 0 0 auto;
    height: 350px;
    padding: 19px;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-col--brand {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .app-content {
    flex-direction: column;
    align-items: center;
  }

  .app-phone {
    flex: 0 0 auto;
    width: 280px;
    margin-left: 0;
    margin-bottom: -120px;
    margin-top: 20px;
  }

  .app-text {
    padding: 40px 40px 60px;
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .app-title {
    font-size: 36px;
  }

  .reviews-grid {
    columns: 2;
    padding: 0 40px;
  }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
  }

  .hero-content {
    margin-left: 40px;
    max-width: 600px;
  }

  .client-logo {
    height: 28px;
  }

  .team-card {
    display: none;
  }

  .video-palm-tree {
    display: none;
  }

  .video-card {
    height: 500px;
  }

  .video-text {
    margin-bottom: 60px;
  }

  .play-circle {
    width: 100px;
    height: 100px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-title {
    font-size: 36px;
  }

  .why-content {
    padding: 0 40px;
  }

  .why-title {
    font-size: 40px;
  }

  .why-features {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .portfolio-title {
    font-size: 40px;
  }

  .branding-text {
    font-size: 80px;
  }

  .footer-cta-phone {
    font-size: 24px;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  /* .nav-links-wrapper {
    display: none;
  } */

  .site-header {
    padding: 0 24px;
  }
    .hamburger {
    display: flex;
    z-index: 2000;
  }

  .nav-links-wrapper {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: rgba(1, 32, 34, 0.98) !important;
    padding: 80px 20px !important;
    transition: right 0.3s ease !important;
    z-index: 1500 !important;
    display: block !important;
  }

  /* ✅ THIS LINE WAS MISSING OR OVERRIDDEN */
  .nav-links-wrapper.active {
    right: 0 !important;
  }

  .nav-links {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-cta-wrapper {
    display: none !important;
  }
  .nav-cta-wrapper--mobile {
    display: block !important;
  }
  .btn-get-start{
    padding: 0!important;
    margin: 0!important;
     background-color: transparent!important;
      border: none!important;
      width: auto!important;
      height: auto!important;
  }

  /* Mobile dropdown: tap to toggle instead of hover */
  .nav-dropdown-menu {
    position: static !important;
    display: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 8px 0 0 16px !important;
    min-width: unset !important;
    backdrop-filter: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: left !important;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-menu {
    display: block !important;
  }

  .nav-dropdown-menu li a {
    padding: 6px 0 !important;
    font-size: 14px !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .contact-right {
    flex: 1 1 auto;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-content {
    margin-left: 24px;
    margin-right: 24px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-rotating-text {
    white-space: normal !important;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .client-logo {
    height: 24px;
  }

  .video-section {
    padding: 40px 24px;
  }

  .video-card {
    height: 350px;
  }

  .video-heading {
    font-size: 24px;
  }

  .video-text {
    margin-bottom: 80px;
  }

  .why-content {
    padding: 0 24px;
  }

  .why-desc {
    font-size: 16px;
  }

  .stat-card {
    flex: 0 0 100%;
    max-width: 300px;
  }

  .portfolio-cards {
    padding: 0 24px;
  }

  .portfolio-subtitle {
    font-size: 16px;
    padding: 0 24px;
  }

  .portfolio-card-content {
    padding: 24px;
  }

  .portfolio-card-desc {
    font-size: 18px;
  }

  .reviews-grid {
    columns: 1;
    padding: 0 24px;
  }

  .reviews-title {
    font-size: 32px;
    padding: 0 24px;
  }

  .reviews-bg-palm {
    width: 500px;
    left: -100px;
    top: -50px;
  }

  .reviews-bottom {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 24px;
  }

  .reviews-rating-img {
    height: 36px;
  }

  .app-card {
    margin: 40px 24px 0;
    border-radius: 16px;
  }
.app-content{
  gap: 80px;
}
  .app-phone {
    width: 200px;
    margin-bottom: -80px;
  }

  .app-text {
    padding: 30px 24px 40px;
    margin-left: 0;
  }

  .app-title {
    font-size: 32px;
  }

  .app-stores {
    flex-direction: column;
    gap: 12px;
  }

  .contact-section {
    padding: 0 24px;
    margin: 60px auto;
  }

  .contact-title {
    font-size: 28px;
  }
    .contact-right {
    flex: 1;                /* ✅ remove fixed width */
    width: 100%;
  }

  .contact-form {
    gap: 16px;              /* slightly tighter spacing */
  }

  .form-row {
    flex-direction: column; /* ✅ 2 column → 1 column */
    gap: 14px;
  }

  .form-row .form-group {
    flex: unset;
    width: 100%;
  }

  .form-label {
    font-size: 14px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    font-size: 14px;
    padding: 12px 14px;
  }

  .form-textarea {
    min-height: 100px;
  }

  .submit-btn {
    width: 100%;                  /* ✅ full width button */
    align-self: stretch;          /* override flex-start */
    padding: 14px;
    font-size: 14px;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    flex: 0 0 auto;
  }
  

  .footer-links--no-heading {
    margin-top: 0;
  }

  .footer-cta-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-cta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-bottom-right {
    flex-wrap: wrap;
    gap: 8px;
  }

  .branding-text {
    font-size: 60px;
  }
  main{
    min-width: 500px;
  }
  .site-footer{
    min-width: 500px;
  }

}

/* Small mobile (480px) */
@media (max-width: 480px) {
  main{
    min-width: 500px;
  }
  .hero-title {
    font-size: 32px;
  }

  .client-logo {
    height: 20px;
  }

  .video-heading {
    font-size: 20px;
  }

  .services-title {
    font-size: 24px;
  }

  .why-title {
    font-size: 24px;
  }

  .portfolio-title {
    font-size: 24px;
  }

  .reviews-title {
    font-size: 24px;
  }

  .contact-title {
    font-size: 24px;
  }

  .branding-text {
    font-size: 40px;
  }

  .footer-links a {
    font-size: 18px;
  }

  .app-title {
    font-size: 26px;
  }
}

/* =============================================
   ANIMATIONS & KEYFRAMES
   ============================================= */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes slideInBranding {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 0.9;
    transform: translateX(0);
  }
}

/* =============================================
   SCROLL REVEAL SYSTEM
   Only activate when JS confirms it's ready.
   Without JS, all content remains fully visible.
   ============================================= */

.reveal-ready [data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-ready [data-reveal="up"] {
  transform: translateY(40px);
}

.reveal-ready [data-reveal="down"] {
  transform: translateY(-30px);
}

.reveal-ready [data-reveal="left"] {
  transform: translateX(-50px);
}

.reveal-ready [data-reveal="right"] {
  transform: translateX(50px);
}

.reveal-ready [data-reveal="scale"] {
  transform: scale(0.85);
}

.reveal-ready [data-reveal="fade"] {
  transform: none;
}

.reveal-ready [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for child elements */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* =============================================
   HERO ENTRANCE ANIMATIONS
   ============================================= */

.hero-content {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-title {
  animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-subtitle {
  animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero-cta {
  animation: fadeInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

/* =============================================
   FLOATING & CONTINUOUS ANIMATIONS
   ============================================= */

.team-card {
  animation: fadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both,
             float 4s ease-in-out 2s infinite;
}

.play-btn {
  animation: pulse 2.5s ease-in-out infinite;
}

.play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--text-white);
  animation: pulseRing 2.5s ease-out infinite;
  z-index: -1;
}

/* =============================================
   NAVBAR SCROLL STATE
   ============================================= */

.site-header {
  transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

.site-header.scrolled {
  background: rgba(1, 32, 34, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 12px 40px;
}

/* =============================================
   ENHANCED HOVER EFFECTS
   ============================================= */

.btn-primary,
.btn-secondary,
.btn-get-start,
.submit-btn {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-get-start:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:active,
.btn-secondary:active,
.btn-get-start:active,
.submit-btn:active {
  transform: translateY(0);
}

.service-card {
  transition: border-color 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(6, 221, 235, 0.08);
}

.stat-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.review-card-inner {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-circle {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-block:hover .feature-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.footer-cta-btn {
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-cta-btn:hover {
  transform: scale(1.08);
}

.company-deck-btn {
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.whatsapp-btn {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.store-btn {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.nav-link {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  transform: translateX(4px);
}

.client-logo {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0.7;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* =============================================
   BRANDING TEXT ANIMATION
   ============================================= */

.branding-text {
  transition: opacity 1.2s ease;
}

.branding-text.revealed {
  animation: slideInBranding 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* =============================================
   BACKGROUND SHAPE PARALLAX-LIKE EFFECT
   ============================================= */

.hero-shape-right,
.services-bg-shape,
.portfolio-bg-shape,
.why-bg-shape,
.reviews-bg-palm,
.video-palm-tree {
  transition: transform 0.6s ease-out;
}

/* =============================================
   REDUCE MOTION FOR ACCESSIBILITY
   ============================================= */

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .play-btn::before {
    display: none;
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: var(--bg-primary);
  width: 90%;
  max-width: 800px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text-white);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== PERFORMANCE: OFF-SCREEN RENDERING (shared sections) ===== */
.clients-section,
.video-section,
.services-section,
.portfolio-section,
.reviews-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ===== PERFORMANCE: CSS CONTAINMENT (shared cards) ===== */
.service-card,
.review-card,
.portfolio-card {
  contain: layout style paint;
}
/* Common select style */
.custom-select {
  background: #1a3a3c url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat;
  background-position: right 10px center;
  background-size: 18px;

  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 12px 40px 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
}

/* Optional hover */
.custom-select:hover {
  border-color: #00d1c7;
}

/* Make custom selects responsive on mobile (prevent dropdown width overshoot) */
.custom-select,
.form-input.custom-select,
.form-select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.custom-select option {
  /* Android/iOS may still choose native width; this helps with inner content fallback */
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .custom-select,
  .form-input.custom-select,
  .form-select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .custom-select option {
    white-space: normal;
    word-break: break-word;
  }
} 