/* RESET & GLOBAL */

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

:root {
  --bg: #020617;
  --bg-soft: #050815;
  --bg-softer: #0b1020;
  --accent: #f97316;
  --accent-strong: #fb923c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-full: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.7);
  --shadow-card: 0 14px 40px rgba(15, 23, 42, 0.6);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

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

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

body {
  min-height: 100vh;
}

/* LAYOUT */

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.97), rgba(2, 6, 23, 0.85), transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.7rem;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 1.1rem;
  background: radial-gradient(circle at 20% 0%, #f97316, #ea580c 35%, #0f172a 100%);
  position: relative;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.7);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 0.9rem;
  border: 1px solid rgba(248, 250, 252, 0.5);
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

/* NAV */

.main-nav {
  display: flex;
  gap: 1.05rem;
  font-size: 0.88rem;
}

.main-nav a {
  position: relative;
  padding-block: 0.18rem;
  color: var(--text-muted);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  transition: width 0.18s ease-out;
  border-radius: 999px;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 18px;
}

.main-nav .nav-cta {
  padding-inline: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.85);
}

.main-nav .nav-cta:hover {
  border-color: var(--accent);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.1s ease-out,
    box-shadow 0.1s ease-out,
    background 0.15s ease-out,
    color 0.15s ease-out,
    border-color 0.15s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  color: black;
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.8);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text);
  background: rgba(15, 23, 42, 0.9);
}

.btn-outline:hover {
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* HERO SLIDER */

.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 520px;
  margin-top: 64px;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.slider-inner {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease-in-out, transform 0.8s ease-out;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(15, 23, 42, 0.15), transparent 40%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent-strong);
}

.slide-content h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  max-width: 26ch;
  margin: 0;
}

.slide-content p {
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* SLIDER CONTROLS */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.15s ease-out, transform 0.1s ease-out;
}

.slider-btn:hover {
  background: rgba(15, 23, 42, 0.98);
  transform: translateY(-50%) translateX(1px);
}

.slider-btn.prev {
  left: 1.5rem;
}

.slider-btn.next {
  right: 1.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 4;
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.4);
  cursor: pointer;
  padding: 0;
}

.slider-dots .dot.active {
  background: var(--accent);
  width: 16px;
}

/* HERO SECONDARY */

.hero-secondary {
  padding-block: 4.5rem 4rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.99));
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.hero-secondary-inner {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr;
  gap: 2.75rem;
  align-items: center;
}

.hero-secondary h2 {
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
}

.hero-secondary h2 span {
  color: var(--accent-strong);
}

.hero-secondary p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.55rem;
}

.hero-points li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

.hero-gallery {
  display: grid;
  grid-template-areas:
    "big small1"
    "big small2";
  grid-template-columns: 1.5fr 1fr;
  gap: 0.85rem;
}

.hero-img {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-img.big {
  grid-area: big;
  min-height: 260px;
}

.hero-img.small {
  min-height: 120px;
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.45));
}

/* SECTIONS */

.section {
  padding-block: 4.5rem;
  background: var(--bg-soft);
}

.section-soft {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
}

.section-dark {
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617 100%);
  border-block: 1px solid rgba(15, 23, 42, 1);
}

.section-head {
  text-align: left;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* SEO SECTION */

.seo-section p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 70ch;
}

.seo-section p + p {
  margin-top: 0.8rem;
}

/* CLIENTS */

.clients-section {
  background: var(--bg-soft);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.logo-item {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 40px;
  object-fit: contain;
}

/* HİZMETLER */

.services-section {
  background: var(--bg-soft);
}

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

.service-card {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), rgba(15, 23, 42, 0.96));
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.5rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-card h3 {
  font-size: 1rem;
  margin: 0;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.6rem;
  display: grid;
  gap: 0.35rem;
}

.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
}

.service-result {
  font-size: 0.86rem;
  color: #e5e7eb;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 0.45rem;
}

.service-card img {
  border-radius: 1rem;
  margin-top: 0.35rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  object-fit: cover;
  max-height: 140px;
}

/* ================== PORTFOLIO GRID ================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.portfolio-item {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), #020617);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ================== IMAGE ITEMS ================== */

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ================== TEXT AREA ================== */

.portfolio-meta {
  padding: 1.1rem 1.3rem 1rem;
}

.portfolio-meta h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.portfolio-meta p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.portfolio-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.portfolio-meta ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ================== VIDEO ITEMS (FINAL FIXED) ================== */

.portfolio-item.video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

/* MP4 Video */
.portfolio-item.video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: none;
}

/* YouTube IFRAME */
.portfolio-item.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
}

/* ================== PROCESS ================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.process-step {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  border-radius: 1.3rem;
  padding: 1.3rem 1.2rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-card);
}

.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 0.6rem;
}

.process-step h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.process-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================== PACKAGES ================== */

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

.package-card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  border-radius: 1.4rem;
  padding: 1.4rem 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.package-popular {
  border-color: var(--accent-strong);
  box-shadow: 0 20px 55px rgba(249, 115, 22, 0.4);
  position: relative;
}

.package-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.4rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.74rem;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
}

.package-name {
  font-weight: 600;
  font-size: 1rem;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.6rem;
  display: grid;
  gap: 0.3rem;
}

.package-card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.package-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
}

.package-suits {
  font-size: 0.86rem;
  color: #e5e7eb;
  margin: 0.2rem 0 0.6rem;
}

.package-cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ================== TESTIMONIALS ================== */

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

.testimonial-card {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), rgba(15, 23, 42, 0.96));
  border-radius: 1.4rem;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}

.testimonial-name {
  font-size: 0.86rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
/* ======== PORTFOLIO VIDEO FIX (FINAL) ========= */

.portfolio-item.video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.portfolio-item.video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 12px;
}
/* ================== PORTFOLIO VIDEO — FINAL & PERFECT ================== */

.portfolio-item.video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 12px;
  background: #000; /* Video yüklenene kadar siyah görünüm */
}

/* Video → tam net görünüm + responsive */
.portfolio-item.video .portfolio-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.98);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1rem;
  color: var(--text-muted);
}

.faq-answer {
  padding: 0 1rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* CONTACT */

.contact-section {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 1));
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.6rem;
  align-items: flex-start;
}

.contact-text h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.8rem;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.contact-points li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
}

.contact-row {
  padding: 0.8rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: rgba(15, 23, 42, 0.98);
}

.contact-row:hover {
  border-color: var(--accent);
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.96rem;
}

/* FOOTER */

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding-block: 1.7rem 1.1rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 0.6rem;
}

.footer-logo {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.footer-left p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.footer-right a {
  color: var(--text-muted);
}

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

.footer-bottom {
  font-size: 0.78rem;
  color: #6b7280;
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding-top: 0.6rem;
  text-align: center;
}

/* MOBILE BAR */

.mobile-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  display: none;
  justify-content: space-around;
  padding: 0.55rem 0.75rem 0.65rem;
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

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

  .hero-gallery {
    order: -1;
  }

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

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

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

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

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-slider {
    height: 75vh;
  }
}

@media (max-width: 720px) {
  .hero-slider {
    margin-top: 60px;
    height: 70vh;
    min-height: 480px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .section {
    padding-block: 3.4rem;
  }

  .services-grid,
  .process-grid,
  .packages-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 54px;
  }
}
/* ================= VIDEO SLIDER ================= */
.video-slider {
  position: relative;
  height: 85vh;
  min-height: 550px;
  width: 100%;
  overflow: hidden;
  margin-top: 70px;
}

.video-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity .8s ease-in-out;
}

.video-slide.active {
  opacity: 1;
  z-index: 3;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 100%;
  max-width: 700px;
  padding: 0 1rem;
}

.video-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: .4rem;
}

.video-content p {
  font-size: 1.1rem;
  opacity: .9;
}

/* Buttons */
.video-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: 0.2s ease;
}

.video-btn:hover {
  background: rgba(255,255,255,0.4);
}

.video-btn.prev { left: 25px; }
.video-btn.next { right: 25px; }

/* Dots */
.video-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 20;
}

.video-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.video-dots span.active {
  background: var(--accent);
  width: 18px;
  border-radius: 999px;
}

/* Mobile */
@media (max-width: 720px) {
  .video-btn { display: none; }
  .video-content h1 { font-size: 2rem; }
  .video-content p { font-size: 1rem; }
}
/* Slider Ana Alan */
.slider {
  width: 100%;
  height: 60vh;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.slider .slides {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 12s infinite;
}

.slider .slide {
  width: 100%;
  flex-shrink: 0;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Otomatik geçiş animasyonu – 3 görsel */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(0); }

  38% { transform: translateX(-100%); }
  66% { transform: translateX(-100%); }

  71% { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}

/* Mobil için tam uyum */
@media(max-width: 768px) {
  .slider {
    height: 45vh;
  }
}
/* SLIDER ALANI */
.slider {
  width: 100%;
  height: 60vh;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 600%;
  height: 100%;
  animation: slide 24s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6 FOTOĞRAF İÇİN ANİMASYON */
@keyframes slide {
  0%   { transform: translateX(0); }
  13%  { transform: translateX(0); }

  17%  { transform: translateX(-100%); }
  30%  { transform: translateX(-100%); }

  34%  { transform: translateX(-200%); }
  47%  { transform: translateX(-200%); }

  51%  { transform: translateX(-300%); }
  64%  { transform: translateX(-300%); }

  68%  { transform: translateX(-400%); }
  81%  { transform: translateX(-400%); }

  85%  { transform: translateX(-500%); }
  100% { transform: translateX(-500%); }
}

/* MOBİL İÇİN */
@media(max-width: 768px) {
  .slider {
    height: 40vh;
  }
}
/* ===================== NEW IMAGE SLIDER ===================== */

.image-slider {
  width: 100%;
  height: 60vh;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.image-slides {
  display: flex;
  width: 600%;
  height: 100%;
  animation: imgSlide 24s infinite;
}

.image-slide {
  width: 100%;
  flex-shrink: 0;
}

.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ANİMASYON */
@keyframes imgSlide {
  0%   { transform: translateX(0); }
  13%  { transform: translateX(0); }

  17%  { transform: translateX(-100%); }
  30%  { transform: translateX(-100%); }

  34%  { transform: translateX(-200%); }
  47%  { transform: translateX(-200%); }

  51%  { transform: translateX(-300%); }
  64%  { transform: translateX(-300%); }

  68%  { transform: translateX(-400%); }
  81%  { transform: translateX(-400%); }

  85%  { transform: translateX(-500%); }
  100% { transform: translateX(-500%); }
}

/* MOBİL */
@media(max-width: 768px) {
  .image-slider {
    height: 40vh;
  }
}
/* GENEL BUTON STİLİ (TEMA UYUMLU) */
.slider-buttons .btn {
  display: inline-block;
  padding: 14px 26px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 14px;
  transition: 0.25s ease;
  text-decoration: none;
  margin: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* HEPSİNE HAFİF OPACITY GEÇİŞİ */
.slider-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* 📞 HEMEN ARA (Turuncu Premium Ton) */
.btn-call {
  background: linear-gradient(135deg, #ff8400, #ff5e00);
  color: #fff !important;
  border: none;
}

.btn-call:hover {
  background: linear-gradient(135deg, #ffa94d, #ff7433);
}

/* 💬 WHATSAPP */
.btn-wp {
  background: #25D366;
  color: #fff !important;
  border: none;
}

.btn-wp:hover {
  background: #1ebe5d;
}

/* ANA PRIMARY (Teklif Al) */
.btn-primary {
  background: linear-gradient(135deg, #0078ff, #0056d6);
  color: white !important;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3393ff, #2d6ce0);
}

/* OUTLINE BUTON (Çalışmaları Gör vb.) */
.btn-outline {
  border: 2px solid #ffffff;
  color: white !important;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

/* 📱 MOBİLDE DAHA BÜYÜK VE TAM GENİŞLİK */
@media (max-width: 768px) {
  .slider-buttons .btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 15px 0;
    margin: 8px 0;
  }
}
/* ===============================
   GENEL BUTON STİLİ
================================*/
.slider-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  transition: 0.25s ease;
  text-decoration: none !important;
  margin: 6px;
  color: #fff !important; /* ⚡ YAZI HEP GÖRÜNSÜN */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Hover efekti */
.slider-buttons .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ===============================
   📞 HEMEN ARA – TURUNCU GRADIENT
================================*/
.btn-call {
  background: linear-gradient(135deg, #ff8c00, #ff5e00);
  border: none;
}

.btn-call:hover {
  background: linear-gradient(135deg, #ffa84d, #ff7433);
}

/* 📞 Animasyon */
.btn-call i {
  margin-right: 10px;
  animation: phone-shake 1.2s infinite;
}

@keyframes phone-shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(12deg); }
  50% { transform: rotate(-12deg); }
  75% { transform: rotate(8deg); }
}

/* ===============================
   💬 WHATSAPP – YEŞİL
================================*/
.btn-wp {
  background: #25D366;
  border: none;
}

.btn-wp:hover {
  background: #1ebe5d;
}

/* 💬 WhatsApp ikon animasyonu */
.btn-wp i {
  margin-right: 10px;
  animation: wp-pulse 1.5s infinite;
}

@keyframes wp-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.17); }
  100% { transform: scale(1); }
}

/* ===============================
   🔵 TEKLİF AL – MAVİ GRADIENT
================================*/
.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056d6);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3393ff, #2d6ce0);
}

/* ===============================
   ⚪ OUTLINE BUTON (Çalışmaları Gör vb.)
================================*/
.btn-outline {
  border: 2px solid white;
  background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.18);
}

/* ===============================
   📱 MOBİL UYUM
================================*/
@media (max-width: 768px) {
  .slider-buttons .btn {
    width: 100%;
    padding: 16px 0;
    font-size: 17px;
    margin: 8px 0;
  }
}
/* ==========================================
   GENEL BUTON STİLİ (3D + Shine + Premium)
========================================== */
.slider-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  transition: 0.3s ease;
  text-decoration: none !important;
  margin: 8px;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Hover: 3D Button Lift */
.slider-buttons .btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Shine Effect (Light Sweep) */
.slider-buttons .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.35);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.slider-buttons .btn:hover::after {
  left: 150%;
}

/* ==========================================
   📞 HEMEN ARA (Turuncu Premium Gradient)
========================================== */
.btn-call {
  background: linear-gradient(135deg, #ff8c00, #ff5e00);
  border: none;
}

/* Telefon ikon titreşim (shake) animasyonu */
.btn-call i {
  margin-right: 10px;
  display: inline-block;
  animation: phoneShake 1.2s infinite;
}

@keyframes phoneShake {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(7deg); }
  80% { transform: rotate(-7deg); }
}

.btn-call:hover {
  background: linear-gradient(135deg, #ffa74d, #ff7433);
}

/* ==========================================
   💬 WHATSAPP (Pulse Effect)
========================================== */
.btn-wp {
  background: #25D366;
  border: none;
}

.btn-wp:hover {
  background: #1ebe5d;
}

/* WhatsApp nabız (pulse) animasyonu */
.btn-wp i {
  margin-right: 10px;
  animation: wpPulse 1.5s infinite;
}

@keyframes wpPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ==========================================
   🔵 TEKLİF AL (Premium Mavi Gradient)
========================================== */
.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056d6);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3393ff, #2d6ce0);
}

/* ==========================================
   ⚪ OUTLINE (Çalışmaları Gör vb.)
========================================== */
.btn-outline {
  border: 2px solid #ffffff;
  background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.20);
}

/* ==========================================
   📱 MOBİL TAM GENİŞLİK
========================================== */
@media (max-width: 768px) {
  .slider-buttons .btn {
    width: 100%;
    padding: 18px 0;
    font-size: 17px;
    margin: 10px 0;
  }
}
.neon-orange {
  color: #ff7a00;
  font-weight: 700;
  text-shadow:
    0 0 8px rgba(255,122,0,0.7),
    0 0 16px rgba(255,122,0,0.5),
    0 0 24px rgba(255,122,0,0.3);
  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  0% {
    text-shadow: 
      0 0 6px rgba(255,122,0,0.5),
      0 0 12px rgba(255,122,0,0.3);
  }
  100% {
    text-shadow:
      0 0 12px rgba(255,122,0,1),
      0 0 28px rgba(255,122,0,0.8);
  }
}

/* Mobil uyum geliştirme */
.video-content * {
  max-width: 90%;
}
.video-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.video-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.video-dots .dot.active {
  background: #ff7a00;
  box-shadow: 0 0 8px #ff7a00;
}
/* ================================================
   NEON ORANGE 3D – TÜM SLIDER YAZILARI
   ================================================ */
.video-slider .video-content h1,
.video-slider .video-content h2,
.video-slider .video-content h3,
.video-slider .video-content p {
  color: #ff7b0000 !important; /* Turuncu ana renk */
  font-weight: 700;
  text-shadow:
    0 0 5px rgba(255, 123, 0, 0),
    0 0 10px rgba(255, 123, 0, 0),
    0 0 20px rgba(255, 123, 0, 0),
    2px 2px 4px rgba(0,0,0,0.8); /* 3D gölge */
  animation: neonPulse3D 2.8s infinite alternate ease-in-out;
}

/* Parlama animasyonu */
@keyframes neonPulse3D {
  0% {
    text-shadow:
      0 0 4px rgba(255, 123, 0, 0),
      0 0 10px rgba(255, 123, 0, 0),
      0 0 18px rgba(255, 123, 0, 0),
      2px 2px 4px rgba(0,0,0,0.7);
  }
  100% {
    text-shadow:
      0 0 12px rgba(255, 123, 0, 0.11),
      0 0 26px rgba(255, 123, 0, 0),
      0 0 40px rgba(255, 123, 0, 0),
      2px 2px 6px rgba(0,0,0,0.9);
  }
}

/* Başlık tipografisini biraz güçlendirmek için */
.slider-title {
  font-size: 2.6rem;
  line-height: 1.2;
}

.slider-subtitle {
  font-size: 1.4rem;
  margin-top: 10px;
  font-weight: 700;
}

.slider-text {
  font-size: 1.1rem;
  max-width: 650px;
  font-weight: 500;
}

/* Mobil optimize */
@media (max-width: 768px) {
  .slider-title {
    font-size: 2.0rem;
  }
  .slider-subtitle {
    font-size: 1.2rem;
  }
  .slider-text {
    font-size: 1rem;
  }
}
/* ============================================
   BEYAZ + GÜÇLÜ 3D GÖLGE – EN OKUNAKLI TİPO
   ============================================ */
.video-slider .video-content h1,
.video-slider .video-content h2,
.video-slider .video-content h3,
.video-slider .video-content p {
  color: #ffffff !important;
  font-weight: 700;

  /* güçlü 3D siyah gölge */
  text-shadow:
    0 3px 6px rgb(0, 0, 0),
    0 6px 12px rgba(0,0,0,0.80);
}

/* ============================================
   BOYUTLAR (ESNEK VE PROFESYONEL)
   ============================================ */
.slider-title {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.slider-subtitle {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.slider-text {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.95;
}

/* Mobil tipografi (daha okunur) */
@media (max-width: 768px) {
  .slider-title {
    font-size: 2.1rem;
  }

  .slider-subtitle {
    font-size: 1.15rem;
  }

  .slider-text {
    font-size: 0.95rem;
  }
}
/* ============================================
   SLIDER YAZI KUTUSU (OKUNAKLI PANEL)
   ============================================ */
.video-slider .video-content {
  display: inline-block;
  padding: 22px 28px;
  border-radius: 18px;

  /* yarı saydam siyah panel */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

/* Mobil için optimize */
@media (max-width: 768px) {
  .video-slider .video-content {
    padding: 16px 18px;
    margin: 0 12px;
  }
}

/* ============================================
   BEYAZ + GÜÇLÜ 3D GÖLGE – EN OKUNAKLI TİPO
   ============================================ */
.video-slider .video-content h1,
.video-slider .video-content h2,
.video-slider .video-content h3,
.video-slider .video-content p {
  color: #ffffff !important;
  font-weight: 700;

  /* güçlü 3D siyah gölge */
  text-shadow:
    0 3px 6px rgba(0,0,0,0.85),
    0 6px 12px rgba(0,0,0,0.80);
}

/* ============================================
   BOYUTLAR (ESNEK VE PROFESYONEL)
   ============================================ */
.slider-title {
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.slider-subtitle {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.slider-text {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.95;
}

/* Mobil tipografi (daha okunur) */
@media (max-width: 768px) {
  .slider-title {
    font-size: 2.1rem;
  }

  .slider-subtitle {
    font-size: 1.15rem;
  }

  .slider-text {
    font-size: 0.95rem;
  }
}
 /* ====================================================
   PREMIUM SLIDER BUTTONS (APPLE / AIRBNB STYLE)
   ==================================================== */

.slider-buttons {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Ana stil */
.slider-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: 14px;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: white;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,0.28);

  transition: all 0.25s ease;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.35),
    inset 0 0 0 rgba(255,255,255,0);
}

/* Hover Premium Efekt */
.slider-buttons a:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-3px);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.068),
    inset 0 0 14px rgba(255,255,255,0.18);
}

/* Özel renk vurguları (modern badge tipi — aşırı değil) */
.btn-call {
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.45),
    0 6px 14px rgba(0,0,0,0.3);
}
.btn-call:hover {
  box-shadow:
    0 0 28px rgba(255, 119, 0, 0),
    0 10px 22px rgba(0,0,0,0.4);
}

.btn-wp {
  box-shadow:
    0 0 18px rgba(0,255,100,0.45),
    0 6px 14px rgba(0,0,0,0.3);
}
.btn-wp:hover {
  box-shadow:
    0 0 28px rgba(0,255,100,0.7),
    0 10px 22px rgba(0,0,0,0.4);
}

.btn-primary {
  box-shadow:
    0 0 18px rgba(40,150,255,0.45),
    0 6px 14px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  box-shadow:
    0 0 28px rgba(40,150,255,0.7),
    0 10px 22px rgba(0,0,0,0.4);
}

/* MOBILE PERFECT */
@media (max-width: 768px) {
  .slider-buttons a {
    flex: 1 1 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 1.05rem;
  }
}
.logo-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.logo-item img {
  transition: transform 0.25s ease;
}

.logo-item img:hover {
  transform: scale(1.06);
}

.insta-handle {
  color: var(--accent); /* turuncu */
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}

.insta-handle:hover {
  text-decoration: underline;
  color: #ff7a1a;
}
/* ================= HERO VIDEO ================= */

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video Container */
.video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Arka Plan Video (Masaüstü ve Mobil Optimize) */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.92) contrast(1.05);
}

/* Mobilde farklı video pozisyonu */
@media (max-width: 768px) {
  .hero-video {
    width: 180%;
    height: 180%;
    object-position: center top; /* yüz aşağı iner */
  }
}

/* Sinematik Film Grain */
.film-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("img/grain.png");
  background-size: cover;
  opacity: 0.10;
  mix-blend-mode: overlay;
  animation: grainMove 8s infinite linear;
}

@keyframes grainMove {
  0% { transform: translate(0,0); }
  50% { transform: translate(-12px, 8px); }
  100% { transform: translate(0,0); }
}

/* Karanlık Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.70)
  );
  z-index: 2;
}

/* İçerik Konteyneri */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 18vh;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* İç blok – daha aşağı ve ortalanmış */
.hero-content-inner {
  max-width: 780px;
  text-align: center;
  backdrop-filter: blur(4px);
  padding: 2rem 1.5rem;
  border-radius: 18px;
}

/* Başlıklar */
.hero-title {
  font-size: 2.7rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  opacity: 0.92;
}

/* Mobil İçin Optimize */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 30vh; /* Videodaki adamın yüzü aşağı kayar */
  }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1.15rem; }
  .hero-text { font-size: 0.95rem; }
}

/* 3D Neon Yazı */
.neon-text {
  color: #fff;
  text-shadow:
    0 0 7px #ff7a1a,
    0 0 18px #ff7a1a,
    0 0 28px rgba(255,120,30,0.7),
    4px 4px 3px rgba(0,0,0,0.55);
}

.neon-text-soft {
  color: #fff;
  text-shadow:
    0 0 4px #ff7a1a,
    0 0 10px rgba(255,120,30,0.45);
}

/* Button Shine Effect */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.25);
  transform: rotate(25deg);
  transition: 0.7s;
  opacity: 0;
}

.btn-shine:hover::after {
  left: 140%;
  opacity: 1;
}
/* Masaüstü – yazıyı daha yukarı taşıyoruz */
.hero-content-inner {
  margin-top: 26vh; /* 38 yerine → 26 (çok daha doğru) */
}

/* Mobil – yazıyı ekranın tam ortasına yaklaştırıyoruz */
@media (max-width: 768px) {
  .hero-content-inner {
    margin-top: 18vh; /* 48vh yerine → 18vh (mükemmel görünür) */
  }
}
.mobile-menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media(max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-cta {
    display: none; /* Mobilde CTA alt barda var */
  }
}
/* === TESTIMONIAL CAROUSEL === */

.testimonials-section {
  padding: 60px 0;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 24px 22px;
  background: #ffffff;
  color: #000;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  margin: 0 10px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-meta {
  font-size: 14px;
  font-weight: 600;
  opacity: .75;
}

/* Responsive küçük iyileştirmeler */
@media (min-width: 768px) {
  .testimonial-slide {
    max-width: 600px;
    margin: 0 auto;
  }
}
.portfolio-item.video .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.portfolio-item.video .portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%; /* video aşağı alındı */
  display: block;
}
.video-wrapper {
  width: 100%;
  max-width: 100%;
}

.portfolio-video {
  width: 100%;
  height: auto;
  display: block;
}
