:root {
  --navy-950: #030916;
  --navy-900: #061327;
  --navy-800: #0a2143;
  --navy-700: #113669;
  --blue-500: #1f74cc;
  --blue-400: #4da6ff;
  --ink-900: #080d16;
  --ink-700: #1a2a3f;
  --slate-100: #d5deea;
  --slate-50: #edf2f8;
  --white: #f8fbff;
  --shadow: 0 18px 55px rgba(2, 9, 22, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 25% 5%, #123869 0%, var(--navy-950) 45%, #02060f 100%);
  color: var(--white);
  font-family: "Chakra Petch", "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-shell {
  max-width: 1500px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(4, 13, 30, 0.97), rgba(2, 8, 20, 0.97));
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  padding: 0.8rem 3.8vw;
  background: linear-gradient(105deg, rgba(6, 15, 31, 0.96), rgba(8, 26, 54, 0.9));
  border-bottom: 1px solid rgba(99, 166, 240, 0.5);
  box-shadow: 0 12px 28px rgba(0, 4, 10, 0.48);
  isolation: isolate;
  overflow: visible;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(77, 166, 255, 0.62) 20%, rgba(125, 201, 255, 0.9) 50%, rgba(77, 166, 255, 0.62) 80%, transparent 100%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  gap: 0.82rem;
  align-items: center;
  z-index: 1;
  position: relative;
  margin-top: -25px;
  margin-bottom: -25px;
}

.brand-mark {
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
}

.brand-mark img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-mark:not(:has(img)) {
  width: 66px;
  height: 66px;
  background: linear-gradient(145deg, #3aa4ff, #1457a8);
  color: #eaf4ff;
  border: 1px solid rgba(198, 231, 255, 0.48);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #f0f6ff;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  line-height: 0.9;
}

.brand-text em {
  font-style: normal;
  letter-spacing: 0.3em;
  font-size: 0.58rem;
  color: #9bb2cf;
  margin-top: 0.18rem;
}

.topbar-center {
  flex: 1;
  margin-inline: clamp(1rem, 3vw, 3rem);
}

.topbar-kicker {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6bb8ff;
  font-size: clamp(0.68rem, 1vw, 0.86rem);
}

.topbar-line {
  margin: 0.2rem 0 0;
  color: #c9def6;
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  letter-spacing: 0.03em;
  max-width: 54ch;
}

.topbar-feed {
  display: grid;
  gap: 0.3rem;
  align-content: center;
  min-height: 3.5rem;
}

.topbar-feed-label {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #86c5fd;
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 600;
}

.topbar-feed-link {
  color: #d5e9ff;
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(64ch, 46vw);
  font-weight: 500;
  transition: color 0.3s ease;
}

.topbar-feed-link:hover {
  color: #93cdff;
}

#headerFeedText {
  display: inline-block;
  animation: fadeSlideIn 0.6s ease-out;
}

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

.topnav {
  position: fixed;
  top: 92px;
  right: 3.8vw;
  z-index: 25;
  display: grid;
  gap: 0.2rem;
  min-width: 248px;
  padding: 0.82rem;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(5, 15, 33, 0.98), rgba(10, 35, 71, 0.95));
  border: 1px solid rgba(106, 167, 242, 0.38);
  box-shadow: 0 18px 44px rgba(1, 8, 20, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.topnav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.topnav a {
  padding: 0.72rem 0.8rem;
  border-left: 2px solid transparent;
  border-radius: 8px;
  transition: 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  color: #dcecff;
}

.topnav a:hover,
.topnav a.is-active {
  color: #93cdff;
  border-color: #72b8ff;
  background: rgba(68, 132, 203, 0.18);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  color: #d5e9ff;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  gap: 0.72rem;
  z-index: 1;
}

.action-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.35rem 0.68rem;
  border: 1px solid rgba(125, 188, 255, 0.48);
  background: rgba(20, 57, 103, 0.35);
  color: #bcddff;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
}

.whatsapp-chip {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.whatsapp-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(143, 221, 170, 0.78);
  box-shadow: 0 10px 22px rgba(4, 17, 33, 0.32);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3ee07f;
  box-shadow: 0 0 0 4px rgba(62, 224, 127, 0.2);
}

.action-divider {
  width: 1px;
  height: 34px;
  background: rgba(159, 193, 228, 0.45);
}

.header-link {
  background: none;
  border: none;
  cursor: pointer;
  color: #d4e9ff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.15rem;
}

.header-icon-link {
  background: none;
  border: none;
  cursor: pointer;
  color: #b8d6f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.header-icon-link:hover {
  color: #4da6ff;
  background: rgba(79, 166, 255, 0.1);
}

.search-icon {
  width: 15px;
  height: 15px;
  border: 2px solid #8ccaff;
  border-radius: 999px;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #8ccaff;
  right: -5px;
  bottom: -2px;
  transform: rotate(42deg);
}

.lang-flag-btn {
  width: 40px;
  height: 28px;
  border: 2px solid rgba(79, 166, 255, 0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lang-flag-btn:hover {
  transform: scale(1.1);
  border-color: var(--blue-400);
  box-shadow: 0 4px 12px rgba(79, 166, 255, 0.5);
}

/* UK Flag - Union Jack */
.lang-flag-en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0v30h60V0z'/%3E%3C/clipPath%3E%3CclipPath id='b'%3E%3Cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M0 0v30h60V0z' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
}

/* Turkish Flag */
.lang-flag-tr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cpath fill='%23E30A17' d='M0 0h1200v800H0z'/%3E%3Ccircle cx='425' cy='400' r='200' fill='%23fff'/%3E%3Ccircle cx='475' cy='400' r='160' fill='%23E30A17'/%3E%3Cpath fill='%23fff' d='M583.3 400l180.9 58.8-111.8 153.5V387.7l111.8 153.5z'/%3E%3C/svg%3E");
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #d4e9ff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu-icon i {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #8bc9ff;
  margin: 3px 0;
}

main {
  overflow: hidden;
}

section {
  padding-inline: 4vw;
}

.hero {
  position: relative;
  min-height: 84vh;
  margin-top: 0;
  padding-top: clamp(0.8rem, 1.5vw, 1.2rem);
  padding-bottom: clamp(2rem, 3.2vw, 3rem);
  display: grid;
  grid-template-columns: minmax(320px, 44%) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(0.95rem, 1.6vw, 1.45rem);
}

.hero::before {
  content: "";
  position: absolute;
  left: 4vw;
  right: 4vw;
  top: -18px;
  height: 110%;
  background:
    radial-gradient(circle at 14% 12%, rgba(68, 145, 227, 0.26), transparent 38%),
    radial-gradient(circle at 92% 16%, rgba(53, 109, 190, 0.2), transparent 34%),
    linear-gradient(125deg, rgba(7, 21, 44, 0.3), rgba(3, 11, 26, 0));
  filter: blur(2px);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 2.6vw, 2.6rem);
  background: linear-gradient(165deg, rgba(10, 25, 49, 0.92), rgba(4, 12, 27, 0.97));
  border: 1px solid rgba(116, 180, 247, 0.22);
  border-radius: 18px;
  box-shadow: 0 24px 52px rgba(2, 10, 23, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #78bfff;
  font-size: 0.95rem;
}

.hero-left h1 {
  margin: 0.75rem 0 1.05rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-left p {
  max-width: 36ch;
  color: #d2e3f5;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.btn-primary,
.btn-outline {
  margin-top: 1.4rem;
  width: fit-content;
  padding: 0.82rem 1.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
}

.btn-primary {
  color: #041020;
  background: linear-gradient(125deg, #5dc4ff, #2f90ec);
  border: 1px solid rgba(222, 242, 255, 0.56);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 28px rgba(79, 171, 255, 0.4);
}

.btn-outline {
  border: 1px solid rgba(104, 175, 251, 0.45);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(44, 119, 199, 0.22);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.hero-trust-strip {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #9ecaf3;
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 0.02em;
}

.trust-item svg {
  color: #4da6ff;
  flex-shrink: 0;
}

.trust-divider {
  color: rgba(158, 202, 243, 0.3);
  font-size: 0.9rem;
}

.hero-dots button {
  width: 22px;
  height: 4px;
  border: none;
  border-radius: 8px;
  background: rgba(174, 211, 250, 0.4);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dots button.active {
  background: #79c3ff;
  width: 42px;
}

.hero-media-shell {
  position: relative;
  z-index: 1;
  min-height: 620px;
  padding-bottom: 2.5rem;
}

.hero-media {
  position: relative;
  height: 620px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(84, 153, 231, 0.3);
  box-shadow: 0 24px 52px rgba(2, 9, 22, 0.45);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.88;
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(2, 10, 22, 0.5) 0%, rgba(4, 22, 51, 0.1) 35%, rgba(1, 4, 10, 0.48) 100%),
    radial-gradient(circle at 88% 15%, rgba(114, 197, 255, 0.25), transparent 22%);
}

.hero-panel {
  position: absolute;
  right: clamp(0.9rem, 1.5vw, 1.4rem);
  bottom: 0;
  width: min(370px, calc(100% - 1.8rem));
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(141, 197, 250, 0.38);
  border-radius: 10px;
  background: linear-gradient(155deg, rgba(8, 22, 45, 0.92), rgba(6, 17, 34, 0.96));
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 4, 10, 0.5);
  z-index: 20;
}

.hero-panel-label {
  display: block;
  margin: 0 0 0.3rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: #85c4ff;
}

.hero-panel-title {
  display: block;
  margin: 0 0 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #def0ff;
}

.hero-panel-text {
  display: block;
  margin: 0;
  color: #d5e5f8;
  line-height: 1.5;
  font-size: 0.94rem;
  font-weight: 400;
}

.hero-panel h3 {
  margin: 0.4rem 0 0.42rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.hero-panel p {
  margin: 0;
  color: #d5e5f8;
  line-height: 1.5;
  font-size: 0.94rem;
}

/* Roadmap Section */
.roadmap {
  margin-top: 1.5rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(145deg, rgba(8, 19, 39, 0.82), rgba(5, 14, 29, 0.94));
  border: 1px solid rgba(88, 152, 223, 0.32);
}

.roadmap-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.roadmap-kicker {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #74bfff;
  margin-bottom: 0.5rem;
}

.roadmap-header h2 {
  margin: 0.48rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.9;
  color: #def0ff;
}

.roadmap-header p {
  margin: 1rem auto 0;
  color: #cedff2;
  line-height: 1.65;
  max-width: 60ch;
}

.roadmap-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 60px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(to bottom, 
    #10b981 0%,
    #10b981 16.66%,
    #f59e0b 16.66%,
    #f59e0b 83.33%,
    #ef4444 83.33%,
    #ef4444 100%);
  box-shadow: 0 0 10px rgba(79, 166, 255, 0.3);
}

.roadmap-step {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.roadmap-step:last-child {
  margin-bottom: 0;
}

.roadmap-step-number {
  position: absolute;
  left: -60px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(8, 19, 39, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(79, 166, 255, 0.4);
  z-index: 2;
}

/* Step 1 - Green (Start) */
.roadmap-step:nth-child(1) .roadmap-step-number {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

/* Steps 2-5 - Yellow/Orange (In Progress) */
.roadmap-step:nth-child(2) .roadmap-step-number,
.roadmap-step:nth-child(3) .roadmap-step-number,
.roadmap-step:nth-child(4) .roadmap-step-number,
.roadmap-step:nth-child(5) .roadmap-step-number {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

/* Step 6 - Red (Final) */
.roadmap-step:nth-child(6) .roadmap-step-number {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

.roadmap-step-content {
  flex: 1;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(155deg, rgba(14, 34, 65, 0.65), rgba(7, 19, 38, 0.88));
  border: 1px solid rgba(100, 166, 239, 0.35);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.roadmap-step-content:hover {
  border-color: rgba(79, 166, 255, 0.6);
  background: linear-gradient(155deg, rgba(20, 44, 75, 0.75), rgba(10, 25, 45, 0.95));
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(79, 166, 255, 0.2);
}

.roadmap-step-content h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.15rem;
  color: #def0ff;
  line-height: 1.3;
}

.roadmap-step-content p {
  margin: 0.6rem 0 0;
  color: #c8dbee;
  line-height: 1.6;
  font-size: 0.94rem;
}

/* ==============================
   SERVICE PORTFOLIO SECTION
   ============================== */

.service-spectrum {
  padding: clamp(3rem, 5vw, 5rem) 5vw;
}

.service-spectrum .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-kicker {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #74bfff;
  margin-bottom: 0.5rem;
}

.service-spectrum .section-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #def0ff;
  margin: 0;
  line-height: 0.9;
}

.service-spectrum .section-head p {
  margin: 0;
  max-width: 60ch;
  color: #a8c4de;
  line-height: 1.7;
  font-size: 1.05rem;
}

.service-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-tile {
  position: relative;
  border: 1px solid rgba(79, 166, 255, 0.15);
  background: linear-gradient(165deg, rgba(12, 30, 58, 0.7), rgba(6, 16, 34, 0.92));
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 166, 255, 0.45);
  box-shadow: 0 16px 40px rgba(79, 166, 255, 0.15), 0 0 0 1px rgba(79, 166, 255, 0.1);
}

.service-tile-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 28, 55, 0.9), rgba(5, 14, 30, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-tile-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 16, 34, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-tile-media::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 2px solid rgba(79, 166, 255, 0.2);
  border-radius: 50%;
  background: rgba(79, 166, 255, 0.06);
  z-index: 0;
}

.service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-tile:hover .service-tile-media img {
  transform: scale(1.08);
}

.service-tile-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.service-tile h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: #e8f2ff;
  font-weight: 700;
}

.service-tile p {
  margin: 0.65rem 0 0;
  color: #9bb8d6;
  line-height: 1.65;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(79, 166, 255, 0.35);
  background: rgba(79, 166, 255, 0.08);
  color: #7dc4ff;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.service-detail-link:hover {
  background: rgba(79, 166, 255, 0.18);
  border-color: rgba(79, 166, 255, 0.6);
  color: #a8dcff;
}

.news {
  padding-top: clamp(2.4rem, 4vw, 4rem);
  padding-bottom: clamp(2.4rem, 4vw, 4rem);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #def0ff;
}

.ghost-link {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-100);
  border-bottom: 1px solid rgba(207, 229, 255, 0.56);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
}

.news-card {
  border: 1px solid rgba(100, 166, 239, 0.35);
  background: linear-gradient(155deg, rgba(14, 34, 65, 0.65), rgba(7, 19, 38, 0.88));
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 166, 255, 0.6);
  background: linear-gradient(155deg, rgba(20, 44, 75, 0.75), rgba(10, 25, 45, 0.95));
  box-shadow: 0 8px 24px rgba(79, 166, 255, 0.2);
}

.news-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

.news-body {
  padding: 1.2rem 1.2rem 1.3rem;
}

.news-body h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.2;
  color: #def0ff;
}

.news-date {
  margin: 0.7rem 0;
  color: #4FA6FF;
  font-size: 0.9rem;
  font-weight: 500;
}

.news-body p {
  margin: 0;
  color: #c8dbee;
  line-height: 1.6;
  font-size: 0.94rem;
}

/* About Section */
.about {
  margin-top: 1.45rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(145deg, rgba(8, 21, 42, 0.78), rgba(5, 14, 29, 0.9));
  border: 1px solid rgba(93, 157, 228, 0.28);
}

.about-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.about-header h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.9;
  color: #def0ff;
  letter-spacing: 0.03em;
}

.about-intro {
  margin: 1.2rem auto 0;
  color: #cedff2;
  max-width: 70ch;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  padding: 2.2rem 1.8rem;
  background: linear-gradient(155deg, rgba(14, 34, 65, 0.65), rgba(7, 19, 38, 0.88));
  border: 1px solid rgba(100, 166, 239, 0.3);
  border-top: 3px solid #4da6ff;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: left;
}

.about-card:nth-child(2) { border-top-color: #38d9a9; }
.about-card:nth-child(3) { border-top-color: #ffd43b; }
.about-card:nth-child(4) { border-top-color: #f06595; }
.about-card:nth-child(5) { border-top-color: #a78bfa; }
.about-card:nth-child(6) { border-top-color: #ff922b; }

.about-card:hover {
  border-color: rgba(79, 166, 255, 0.5);
  border-top-color: #4da6ff;
  background: linear-gradient(155deg, rgba(20, 44, 75, 0.75), rgba(10, 25, 45, 0.95));
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(79, 166, 255, 0.18);
}

.about-card:nth-child(2):hover { border-top-color: #38d9a9; }
.about-card:nth-child(3):hover { border-top-color: #ffd43b; }
.about-card:nth-child(4):hover { border-top-color: #f06595; }
.about-card:nth-child(5):hover { border-top-color: #a78bfa; }
.about-card:nth-child(6):hover { border-top-color: #ff922b; }

.about-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, rgba(79, 166, 255, 0.12), rgba(42, 123, 212, 0.06));
  border: 1px solid rgba(79, 166, 255, 0.25);
  border-radius: 14px;
}

.about-card:nth-child(2) .about-card-icon {
  background: linear-gradient(135deg, rgba(56, 217, 169, 0.12), rgba(56, 217, 169, 0.06));
  border-color: rgba(56, 217, 169, 0.25);
}

.about-card:nth-child(3) .about-card-icon {
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.12), rgba(255, 212, 59, 0.06));
  border-color: rgba(255, 212, 59, 0.25);
}

.about-card:nth-child(4) .about-card-icon {
  background: linear-gradient(135deg, rgba(240, 101, 149, 0.12), rgba(240, 101, 149, 0.06));
  border-color: rgba(240, 101, 149, 0.25);
}

.about-card:nth-child(5) .about-card-icon {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(167, 139, 250, 0.06));
  border-color: rgba(167, 139, 250, 0.25);
}

.about-card:nth-child(6) .about-card-icon {
  background: linear-gradient(135deg, rgba(255, 146, 43, 0.12), rgba(255, 146, 43, 0.06));
  border-color: rgba(255, 146, 43, 0.25);
}

.about-card-icon svg {
  width: 30px;
  height: 30px;
  color: #4da6ff;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.about-card:nth-child(2) .about-card-icon svg { color: #38d9a9; }
.about-card:nth-child(3) .about-card-icon svg { color: #ffd43b; }
.about-card:nth-child(4) .about-card-icon svg { color: #f06595; }
.about-card:nth-child(5) .about-card-icon svg { color: #a78bfa; }
.about-card:nth-child(6) .about-card-icon svg { color: #ff922b; }

.about-card h3 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.3rem;
  color: #def0ff;
}

.about-card p {
  margin: 0;
  color: #c8dbee;
  line-height: 1.65;
  font-size: 0.95rem;
}

/* CTA Section */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(10, 28, 55, 0.85), rgba(5, 16, 35, 0.95));
  border: 1px solid rgba(100, 166, 239, 0.35);
  border-left: 4px solid #4da6ff;
  border-radius: 12px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 166, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #def0ff;
  letter-spacing: 0.03em;
  line-height: 0.9;
}

.cta p {
  margin: 0;
  color: #b8d0e8;
  max-width: 55ch;
  line-height: 1.65;
  font-size: 0.95rem;
}

.cta .btn-primary {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 1rem 2.2rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.footer {
  background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #001a33 100%);
  padding: 3rem 2rem 0;
  position: relative;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(79, 166, 255, 0.15);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  margin: 0 0 1.2rem;
  color: #eaf4ff;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-col-brand {
  padding-right: 1rem;
}

.footer-tagline {
  margin: 1rem 0;
  color: rgba(210, 228, 245, 0.85);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  color: rgba(210, 228, 245, 0.88);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: #4da6ff;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(210, 228, 245, 0.88);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: #4da6ff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(210, 228, 245, 0.88);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #4da6ff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #4FA6FF, #2A7BD4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(79, 166, 255, 0.35);
  flex-shrink: 0;
}

.footer-logo .brand-mark {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
}

.footer-logo .brand-mark img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand-text strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: #def0ff;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
}

.footer-brand-text em {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4FA6FF;
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 0.15em;
  font-style: normal;
  line-height: 1;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(79, 166, 255, 0.1);
  border: 1px solid rgba(79, 166, 255, 0.3);
  border-radius: 6px;
  color: #4FA6FF;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: rgba(79, 166, 255, 0.25);
  border-color: #4FA6FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 166, 255, 0.3);
}

/* Legacy footer-column styles removed - using footer-col system */

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.footer-copyright {
  text-align: center;
  margin: 0;
  color: rgba(206, 223, 242, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-logo {
    width: 80px;
    height: 80px;
  }
  
  .footer-logo .brand-mark img {
    max-width: 70px;
    max-height: 70px;
  }
  
  .footer-logo.has-custom-logo img {
    height: 70px;
    max-width: 200px;
  }

  .cta {
    flex-direction: column;
    text-align: center;
    border-left: 1px solid rgba(100, 166, 239, 0.35);
    border-top: 3px solid #4da6ff;
  }

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

  .about-card {
    padding: 1.5rem 1.2rem;
  }
  
  .roadmap-timeline {
    padding-left: 35px;
  }
  
  .roadmap-step-number {
    left: -35px;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .roadmap-timeline::before {
    left: 15px;
    width: 2px;
  }
  
  .roadmap-step-content {
    padding: 1rem 1.2rem;
  }
  
  .roadmap-step-content h3 {
    font-size: 1rem;
  }
  
  .roadmap-step-content p {
    font-size: 0.88rem;
  }
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .topbar {
    flex-wrap: wrap;
    row-gap: 0.8rem;
    min-height: auto;
  }

  .topbar-center {
    order: 3;
    flex-basis: 100%;
    margin: 0;
  }

  .topnav {
    top: 118px;
    right: 3.8vw;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-timeline {
    padding-left: 50px;
  }
  
  .roadmap-step-number {
    left: -50px;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  
  .roadmap-timeline::before {
    left: 18px;
  }

  .capability-visual {
    min-height: 320px;
  }

  .service-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-media-shell {
    min-height: 520px;
  }
  
  .hero-media {
    height: 520px;
  }
}

@media (max-width: 860px) {
  .topbar {
    padding: 0.7rem 4vw;
    height: auto;
    min-height: 70px;
  }

  .brand {
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .brand-mark {
    width: 150px;
    height: 150px;
    font-size: 1rem;
  }
  
  .brand-mark img {
    max-width: 150px;
    max-height: 150px;
  }

  .brand-text strong {
    font-size: clamp(1rem, 5.5vw, 1.6rem);
  }

  .brand-text em {
    font-size: 0.42rem;
    letter-spacing: 0.16em;
  }

  .topbar-center {
    display: block;
    order: 3;
    flex-basis: 100%;
    margin: 0.12rem 0 0;
  }

  .topbar-kicker,
  .topbar-line {
    display: none;
  }

  .topbar-feed {
    gap: 0.14rem;
  }

  .topbar-feed-label {
    font-size: 1.62rem;
  }

  .topbar-feed-link {
    font-size: 0.95rem;
    max-width: 74vw;
  }

  .topbar-actions {
    gap: 0.4rem;
  }

  .header-link {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .search-link span[data-i18n="header_search"] {
    display: none;
  }

  .action-divider {
    height: 21px;
  }

  .whatsapp-chip {
    padding: 0.28rem 0.34rem;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .menu-icon i {
    width: 20px;
    height: 2px;
    margin: 2px 0;
  }

  .topnav {
    top: 72px;
    right: 4vw;
    left: 4vw;
    min-width: 0;
  }

  .hero {
    margin-top: 0.8rem;
    min-height: auto;
  }

  .capability-list,
  .service-catalog,
  .about,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: clamp(2.1rem, 10vw, 3.5rem);
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .hero-media-shell {
    min-height: 390px;
  }
  
  .hero-media {
    height: 390px;
  }

  .hero-panel {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

/* ========================================
   SEARCH MODAL
   ======================================== */

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

.search-modal.active {
  display: flex;
}

.search-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.search-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(79, 166, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: slideDown 0.3s ease-out;
}

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

.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid rgba(79, 166, 255, 0.2);
}

#searchInput {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(79, 166, 255, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--white);
  font-family: "Chakra Petch", sans-serif;
  outline: none;
  transition: all 0.2s;
}

#searchInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#searchInput:focus {
  border-color: var(--blue-400);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(79, 166, 255, 0.1);
}

.search-close-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blue-400);
}

.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px;
}

.search-results::-webkit-scrollbar {
  width: 8px;
}

.search-results::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.search-results::-webkit-scrollbar-thumb {
  background: rgba(79, 166, 255, 0.3);
  border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: rgba(79, 166, 255, 0.5);
}

.search-result-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(79, 166, 255, 0.2);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--blue-400);
  transform: translateX(4px);
}

.search-result-item h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-400);
}

.search-result-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.search-result-item .search-result-type {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.search-highlight {
  background: rgba(79, 166, 255, 0.3);
  color: var(--white);
  padding: 2px 4px;
  border-radius: 2px;
  font-weight: 600;
}

.search-no-results {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.search-no-results p {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.search-no-results small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.search-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.search-placeholder p {
  margin: 0;
  font-size: 15px;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  z-index: 900;
  width: 42px;
  height: 42px;
  background: rgba(10, 22, 40, 0.92);
  color: #78bfff;
  border: 1px solid rgba(79, 166, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.25s ease, background 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(79, 166, 255, 0.2);
  transform: translateY(-3px);
}

/* ========================================
   COOKIE / KVKK BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: linear-gradient(135deg, rgba(6, 19, 39, 0.98), rgba(10, 33, 67, 0.98));
  border-top: 1px solid rgba(79, 166, 255, 0.35);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-content p {
  margin: 0;
  color: #cedff2;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background: linear-gradient(125deg, #5dc4ff, #2f90ec);
  color: #041020;
  font-weight: 700;
}

.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 171, 255, 0.35);
}

.cookie-btn-decline {
  background: transparent;
  color: #9bb8d8;
  border: 1px solid rgba(79, 166, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(79, 166, 255, 0.1);
  color: #def0ff;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-section {
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(145deg, rgba(8, 19, 39, 0.82), rgba(5, 14, 29, 0.94));
  border: 1px solid rgba(88, 152, 223, 0.32);
  margin-bottom: 1rem;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.contact-kicker {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: #74bfff;
  margin-bottom: 0.5rem;
}

.contact-header h2 {
  margin: 0.48rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.9;
  color: #def0ff;
}

.contact-header p {
  margin: 1rem auto 0;
  color: #cedff2;
  line-height: 1.65;
  max-width: 55ch;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: #9ecaf3;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(79, 166, 255, 0.3);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  color: #f0f6ff;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4da6ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(79, 166, 255, 0.1);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2378bfff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
}

.form-group select option {
  background: #0a1628;
  color: #f0f6ff;
}

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

.contact-form-footer {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-submit {
  margin-top: 0;
}

.contact-form-status {
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-form-status.success {
  color: #3ee07f;
}

.contact-form-status.error {
  color: #ff6b6b;
}

/* Logo Image Overrides (override global img rule) */
.brand-mark img {
  width: auto;
  height: 200px;
  max-width: 450px;
  object-fit: contain;
}

.footer-logo.has-custom-logo {
  width: auto;
  height: auto;
  max-width: 360px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.footer-logo.has-custom-logo img {
  width: auto;
  height: 100px;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(79, 166, 255, 0.2));
}

/* Catalog Banner Section */
.catalog-banner {
  padding: 4rem 5vw;
}

.catalog-banner-inner {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(10, 33, 67, 0.9), rgba(6, 19, 39, 0.95));
  border: 1px solid rgba(77, 166, 255, 0.25);
  border-radius: 16px;
  padding: 3.5rem 4rem;
  box-shadow: 0 16px 48px rgba(0, 8, 20, 0.5);
  position: relative;
  overflow: hidden;
}

.catalog-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 166, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.catalog-cover {
  flex-shrink: 0;
  width: 240px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(79, 166, 255, 0.15);
}

.catalog-cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.catalog-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.catalog-label {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #86c5fd;
  font-size: 0.85rem;
  font-weight: 600;
}

.catalog-slogan {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #eaf4ff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: fit-content;
}

@media (max-width: 768px) {
  .catalog-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .catalog-cover {
    width: 160px;
  }

  .catalog-info {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .topbar {
    height: auto;
    min-height: 65px;
    padding: 0.6rem 3vw;
  }
  
  .brand {
    margin-top: -8px;
    margin-bottom: -8px;
  }
  
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .brand-mark img {
    max-width: 100px;
    max-height: 36px;
  }
  
  .brand-text strong {
    font-size: clamp(0.9rem, 5vw, 1.3rem);
  }

  .brand-text em {
    font-size: 0.38rem;
    letter-spacing: 0.14em;
  }
  
  .topbar-feed-link {
    font-size: 0.65rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    bottom: 78px;
    right: 22px;
    width: 38px;
    height: 38px;
  }
}
