/* ═══════════════════════════════════════════════
   TRINKMEDYA — style.css
   Red & White Premium Agency Design
═══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --red:       #E5000A;
  --red-dark:  #B8000A;
  --red-light: #FF1A25;
  --red-pale:  #FFF0F0;
  --white:     #FFFFFF;
  --off-white: #F8F8F8;
  --gray-50:   #F5F5F5;
  --gray-100:  #E8E8E8;
  --gray-200:  #D0D0D0;
  --gray-400:  #9A9A9A;
  --gray-600:  #666666;
  --gray-800:  #222222;
  --black:     #0A0A0A;

  --font-main: 'DM Sans', sans-serif;
  --font-head: 'DM Serif Display', serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --shadow-red: 0 12px 40px rgba(229,0,10,0.30);

  --nav-h: 72px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(232,25,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--red-pale);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  transition: var(--transition);
}
.btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.full-width { width: 100%; justify-content: center; }

/* ── Section Header ── */
.section-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-trink { color: var(--black); }
.logo-medya { color: var(--red); }

/* Hero badge icon */
.badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* About card brand icon */
.about-brand-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  /* icon.png has white bg — blend it away on the red card */
  mix-blend-mode: multiply;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li {
  position: relative;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.nav-links li a:not(.btn-nav):hover {
  color: var(--red);
  background: var(--red-pale);
}

/* Nav Dropdown Menu */
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.2,1,0.3,1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  color: var(--gray-800);
}
.dropdown-menu li a:hover {
  background: var(--gray-50);
  color: var(--red);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F4 50%, #FFFFFF 100%);
}
/* Hero 2-kolon layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  animation: heroIn 0.9s ease both;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  top: 40%; left: 30%;
  opacity: 0.04;
  animation: float1 6s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-20px, 20px) scale(1.05); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  animation: heroIn 0.9s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,25,10,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(232,25,10,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title .highlight { color: var(--red); }

.hero-subtitle {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 20px;
}
.stat { text-align: left; }
.stat-number {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  margin: 0 32px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid .service-card:last-child:nth-child(3n - 1) {
  grid-column: span 1;
}

/* make last row centered when 5 items */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-pale), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,25,10,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: var(--red);
  border-color: var(--red-dark);
  color: var(--white);
}
.service-card.featured::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}
.service-card.featured:hover { box-shadow: var(--shadow-red); }
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .card-list li,
.service-card.featured .card-link { color: var(--white); }
.service-card.featured .card-list li::before { background: rgba(255,255,255,0.7); }
.service-card.featured .card-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 50px;
}

.card-icon {
  width: 52px; height: 52px;
  background: var(--red-pale);
  color: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.card-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.card-list {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.card-list li {
  font-size: 12px;
  color: var(--gray-600);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.card-link:hover { gap: 10px; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card-big {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229,0,10,0.3);
}
.about-card-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.about-card-big::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,0,10,0.15) 0%, transparent 70%);
}
.about-icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.about-icon-wrap img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
.about-icon-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
.about-big-num {
  display: block;
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.about-big-highlight { color: var(--red); }
.about-big-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.5;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-badge-item {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
  transition: var(--transition);
}
.about-badge-item:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.about-badge-item svg { width: 22px; height: 22px; color: var(--red); }

.about-text p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bullet-icon {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.bullet-icon svg { width: 12px; height: 12px; color: var(--red); }
.bullet-item span {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--gray-50);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(229, 0, 10, 0.15);
}
.pricing-card.popular {
  background: var(--red);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(229, 0, 10, 0.3);
  transform: scale(1.05); /* slightly bigger */
  overflow: hidden;
}
.pricing-card.popular::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: glassSweep 4s infinite linear;
  z-index: 1;
}
@keyframes glassSweep {
  0% { left: -100%; }
  50% { left: 250%; }
  100% { left: 250%; }
}
.pricing-card.popular > * {
  position: relative;
  z-index: 2;
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 60px rgba(229, 0, 10, 0.2);
}
.pc-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(229, 0, 10, 0.3);
}
.pc-header { margin-bottom: 32px; text-align: center; }
.pc-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.pricing-card:not(.popular) .pc-header h3 { color: var(--gray-800); }
.pricing-card.popular .pc-header h3 { color: var(--white); }

.pc-price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 12px;
}
.pc-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.pricing-card.popular .pc-currency { color: var(--gray-300); }

.pc-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.pricing-card.popular .pc-amount { color: var(--white); }

.pc-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.pricing-card.popular .pc-period { color: var(--gray-300); }

.pc-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}
.pricing-card.popular .pc-desc { color: var(--gray-300); }

.pc-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
}
.pricing-card.popular .pc-features li { color: var(--gray-100); }
.pc-features svg {
  width: 18px; height: 18px;
  color: var(--red);
  min-width: 18px;
}
.pricing-card.popular .pc-features svg { color: #4ade80; /* green accent */ }

.pc-footer { margin-top: auto; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #B5100A 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-shape {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--red-pale);
  color: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-value {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
  line-height: 1.6;
}
a.contact-value:hover { color: var(--red); }

.contact-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-pale);
  transform: translateY(-2px);
}

/* ── Contact Form ── */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,25,10,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  color: var(--red);
}
.form-success p {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer .logo { margin-bottom: 16px; display: inline-block; }
.footer .logo-trink { color: var(--white); }
.footer .logo-medya { color: var(--red); }
.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,25,10,0.1);
}

.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: 12px;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--red); padding-left: 4px; }

.footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact p svg { margin-top: 2px; min-width: 14px; color: var(--red); }
.footer-contact a { color: var(--gray-400); transition: var(--transition); }
.footer-contact a:hover { color: var(--red); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 28px;
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-red);
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════
   INNER PAGE SPECIFIC STYLES
══════════════════════════════════════ */
.inner-page {
  background: var(--off-white);
}

/* Inner Hero */
.inner-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: linear-gradient(135deg, #111 0%, #000 100%);
  color: var(--white);
  overflow: hidden;
}
.inner-hero .hero-bg-shapes .shape-1 { background: radial-gradient(circle, rgba(229,0,10,0.15) 0%, transparent 70%); }
.inner-hero .hero-bg-shapes .shape-2 { background: radial-gradient(circle, rgba(229,0,10,0.1) 0%, transparent 70%); top: auto; bottom: 0; left: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  animation: heroIn 0.6s ease both;
}
.breadcrumb a { color: var(--gray-200); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; }

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.inner-hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
  animation: heroIn 0.8s ease both;
}
.inner-hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-200);
  margin-bottom: 32px;
  max-width: 500px;
  animation: heroIn 1s ease both;
}
.inner-hero-text .btn { animation: heroIn 1.2s ease both; }

/* Mockup */
.inner-hero-vis {
  display: flex;
  justify-content: center;
  position: relative;
  animation: float1 6s ease-in-out infinite;
}
.mockup-card {
  width: 300px;
  height: 400px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.1);
  transform: rotate(5deg) scale(1.05);
  animation: heroInRight 1s ease both 0.3s;
}
.mockup-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.mc-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); }
.mc-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mc-lines span:nth-child(1) { height: 8px; width: 60%; background: var(--gray-200); border-radius: 4px; }
.mc-lines span:nth-child(2) { height: 6px; width: 40%; background: var(--gray-100); border-radius: 4px; }
.mockup-img {
  flex: 1;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
}
.mockup-img svg { width: 40px; height: 40px; }
.mockup-actions { display: flex; gap: 12px; }
.mc-like, .mc-comment { width: 24px; height: 24px; border-radius: 50%; background: var(--gray-200); }
.mc-like { position: relative; }
.mc-like::after {
  content: ''; position: absolute; inset: 0; background: var(--red); border-radius: 50%;
  animation: popActive 2s infinite alternate;
}
@keyframes popActive { 0% { transform: scale(0.8); opacity: 0; } 10% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }

/* Sub Services */
.sub-services { padding: 100px 0; background: var(--white); }
.sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sub-card {
  padding: 32px 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.sub-card:hover { background: var(--white); box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-3px); }
.sub-card-icon {
  width: 48px; height: 48px;
  background: var(--red-pale);
  color: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sub-card-icon svg { width: 24px; height: 24px; }
.sub-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--black); }
.sub-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* Platforms Showcase */
.platforms { padding: 80px 0; background: var(--black); color: var(--white); text-align: center; }
.platform-wrap h3 { font-family: var(--font-head); font-size: 28px; margin-bottom: 32px; font-weight: 400; }
.plat-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.plat-item {
  display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; opacity: 0.6; transition: var(--transition); color: var(--gray-200);
  cursor: default;
}
.plat-item svg { width: 28px; height: 28px; }
.plat-item:hover { opacity: 1; color: var(--white); transform: scale(1.05); }

/* FAQ Section */
.faq-section { padding: 100px 0; background: var(--off-white); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--red); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
}
.faq-content p {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
  border-top: 1px solid transparent;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1020px) {
  .sub-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 20px 24px; gap: 4px; box-shadow: var(--shadow); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-links li a { display: block; padding: 10px 14px; }

  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }

  .services { padding: 70px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 24px 20px; }

  .about { padding: 70px 0; }
  .about-badges { grid-template-columns: repeat(3, 1fr); }

  .pricing { padding: 70px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .pricing-card.popular { transform: scale(1); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { grid-template-columns: 1fr; padding: 28px 24px; }
  .form-group.full { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .cta-banner { padding: 64px 0; }
  .inner-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mockup-card { transform: rotate(0) scale(1); margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .about-badges { gap: 8px; }
  .about-badge-item { padding: 12px 8px; font-size: 11px; }
  .section-title { font-size: 18px; }
  
  /* Both services AND sub-services will remain 2 columns! Do not collapse to 1. */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sub-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sub-card { padding: 20px 16px; }
  .sub-card-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .sub-card h3 { font-size: 14px; }
  .sub-card p { font-size: 12px; }
  
  .comparison-wrap { flex-direction: column; gap: 16px; }
  .comp-vs { transform: rotate(90deg); }

  /* Mobile Nav Dropdown fix */
  .nav-dropdown .dropdown-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--red-pale);
    padding: 0 0 0 12px;
    margin: 4px 0 8px 16px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: flex;
  }
}

/* ══════════════════════════════════════
   HERO IMAGE SHOWCASE
══════════════════════════════════════ */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: heroInRight 1.2s ease both;
}
.hi-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hi-image img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  z-index: 1;
}
/* Favicon Float Overlay */
.hi-float-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: float1 4s ease-in-out infinite;
}
.hi-float-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  /* Make the logo stand out */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Badge Overlay */
.hi-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.hi-badge svg {
  color: #4ade80;
  width: 28px;
  height: 28px;
}
.hi-b-num {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2px;
}
.hi-b-text {
  font-size: 11px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.hv-badge svg { color: var(--red); }

/* Responsive hero visual */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ══════════════════════════════════════
   BİZ vs AJANSLAR (COMPARISON)
══════════════════════════════════════ */
.comparison {
  padding: 100px 0;
  background: var(--off-white);
}
.comparison-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.comp-col {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.comp-other {
  background: var(--white);
  border: 1px solid var(--gray-100);
}
.comp-us {
  background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
  color: var(--white);
}

.comp-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comp-other .comp-col-header { border-color: var(--gray-100); }
.comp-col-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.comp-icon-gray {
  background: var(--gray-100);
  color: var(--gray-400);
}
.comp-icon-gray svg { width: 22px; height: 22px; }
.comp-icon-red {
  background: var(--red);
}
.comp-col-label {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2px;
}
.comp-other .comp-col-label { color: var(--black); }
.comp-col-sub {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comp-us .comp-col-sub { color: rgba(255,255,255,0.4); }

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 28px;
}
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.comp-item svg { width: 14px; height: 14px; min-width: 14px; margin-top: 2px; flex-shrink: 0; }
.comp-no {
  color: var(--gray-400);
}
.comp-no svg { color: var(--gray-300); }
.comp-yes {
  color: rgba(255,255,255,0.85);
}
.comp-yes svg { color: #4ade80; }

.comp-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

@media (max-width: 768px) {
  .comparison-wrap { flex-direction: column; }
  .comp-vs { writing-mode: horizontal-tb; height: 44px; width: 100%; min-width: unset; }
  .comp-col { padding: 28px 24px; }
}

/* ══════════════════════════════════════
   COMPARISON STAGGERED ANIMATION
══════════════════════════════════════ */
@keyframes compItemIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes compItemInRight {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.comp-anim {
  opacity: 0;
  transition: background 0.2s ease;
}
.comp-other .comp-anim.visible {
  animation: compItemIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--ci) * 0.09s);
  opacity: 1;
}
.comp-us .comp-anim.visible {
  animation: compItemInRight 0.5s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--ci) * 0.09s + 0.1s);
  opacity: 1;
}

/* Hover effect on comp-yes items */
.comp-yes.comp-anim:hover {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  transform: translateX(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.comp-no.comp-anim:hover {
  background: rgba(0,0,0,0.03);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

/* Comparison wrap col slide-in */
.comp-other { transform: translateX(-30px); opacity: 0; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.7s ease; }
.comp-us    { transform: translateX(30px);  opacity: 0; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s, opacity 0.7s ease 0.15s; }
.comp-vs    { opacity: 0; transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s; transform: scaleY(0.6); }
.comparison-wrap.comp-visible .comp-other,
.comparison-wrap.comp-visible .comp-us { transform: translateX(0); opacity: 1; }
.comparison-wrap.comp-visible .comp-vs  { opacity: 1; transform: scaleY(1); }

/* Hero title - tek satır, büyük ve güçlü */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* WHATSAPP FLOAT BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: var(--red);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(229, 0, 10, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-red 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(229, 0, 10, 0.6);
  color: #fff;
}
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(229, 0, 10, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(229, 0, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 0, 10, 0); }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}



/* ══════════════════════════════════════
   HIZMET FIYAT PAKETLERI (SP - Service Pricing)
   (IMAGE REPLICA EXACT DESIGN)
══════════════════════════════════════ */
.sp-section {
  padding: 80px 0 120px;
  background: #f8f9fc;
  font-family: 'DM Sans', sans-serif;
}

/* Page Title Block */
.sp-main-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.sp-title-icon {
  width: 60px; height: 60px;
  background: var(--gray-800);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 15px;
}
.sp-title-icon svg { width: 34px; height: 34px; }
.sp-main-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sp-main-title .text-red {
  color: var(--red);
}
.sp-brand-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 16px;
  border-radius: 4px;
}

/* Grid Layout */
.sp-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 950px;
  margin: 0 auto 30px;
}
.sp-plans-grid-center {
  display: flex;
  justify-content: center;
}
.sp-card-kurumsal {
  width: 100%;
  max-width: 700px;
}

/* Card Wrap */
.sp-card {
  position: relative;
  border-radius: 12px;
  padding: 6px;
  /* background layer for the glowing red border effect */
  background: #fff;
  border: 1px solid rgba(229, 0, 10, 0.2);
  box-shadow: 0 10px 40px rgba(229, 0, 10, 0.08);
  transition: transform 0.3s ease;
}
.sp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(229, 0, 10, 0.15);
}
.sp-card-inner {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* Card Header */
.sp-card-header {
  background: #2a2d34;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
}
.sp-ch-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sp-ch-icon {
  width: 50px; height: 50px;
  background: #ff3c3c; /* softer red to match image */
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.sp-ch-icon svg { width: 28px; height: 28px; }
.sp-ch-title {
  display: flex;
  flex-direction: column;
}
.sp-t-main {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.sp-t-sub {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 1px;
}

/* Price Tag Effect */
.sp-ch-right {
  display:flex; align-items:center;
}
.sp-price-tag {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.sp-price-left {
  background: transparent;
  padding: 10px 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-price-left svg {
  color: #ff3c3c;
}
.sp-price-right {
  background: #ff3c3c;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Card Body */
.sp-card-body {
  padding: 30px 24px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sp-feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-feature-list li {
  font-size: 13px;
  font-weight: 600;
  color: #4a4d55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.sp-feature-list li svg.check {
  width: 14px; height: 14px;
  min-width: 14px;
  margin-top: 2px;
  color: #ff3c3c;
  stroke: #ff3c3c;
  stroke-width: 3;
}
.sp-feature-list li svg.check circle {
  fill: #ff3c3c;
  stroke: none;
}
.sp-feature-list li svg.check path {
  stroke: #ff3c3c;
}

/* Buy Button */
.sp-buy-btn {
  display: flex;
  background: #2a2d34;
  margin: 0 24px 24px;
  border-radius: 6px;
  overflow: hidden;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.sp-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.sp-buy-btn:hover .sp-btn-icon {
  background: #e62020;
}
.sp-btn-text {
  flex: 1;
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.sp-btn-text b { font-weight: 700; }
.sp-btn-decor {
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(to right, #ff3c3c 0, #ff3c3c 15px, transparent 15px, transparent 20px);
  margin-right: 20px;
}
.sp-btn-icon {
  background: #ff3c3c;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s;
}

@media (max-width: 768px) {
  .sp-plans-grid {
    grid-template-columns: 1fr;
  }
  .sp-card-body {
    grid-template-columns: 1fr;
  }
  .sp-price-left {
    font-size: 18px;
  }
}



/* MEGA MENU OVERRIDES */
.nav-dropdown {
  position: static !important; /* to allow full-width relative to container */
}
.nav-dropdown:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-bottom: 2px solid var(--red);
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 0 0 12px 12px;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.mega-item {
  display: flex !important;
  align-items: center;
  gap: 16px;
  padding: 16px !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: transparent;
}
.mega-item:hover {
  background: rgba(0,0,0,0.03);
}
.mi-icon {
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.mega-item:hover .mi-icon {
  background: var(--red-pale);
}
.mega-item:hover .mi-icon img {
  filter: grayscale(0%) !important;
}
.mi-text {
  display: flex;
  flex-direction: column;
}
.mi-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black) !important;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}
.mega-item:hover .mi-title {
  color: var(--red) !important;
}
.mi-desc {
  font-size: 12px;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .mega-menu {
    position: relative;
    box-shadow: none;
    border: none;
    padding: 10px;
  }
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mega-item {
    padding: 12px !important;
  }
  .mi-icon { width: 40px; height: 40px; }
  .mi-icon img { width: 20px !important; }
}



/* PROCESS TIMELINE */
.process-section {
  padding: 80px 0;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 40px;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 35px; left: 12%; right: 12%;
  height: 2px;
  background: var(--gray-100);
  z-index: 1;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}
.step-num {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 0 0 10px var(--white);
  transition: all 0.3s ease;
}
.process-step:hover .step-num {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(229,0,10,0.2);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before { display: none; }
}
@media (max-width: 500px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}



.hero-astro-img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: astroFloat 6s ease-in-out infinite;
}
@keyframes astroFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
