/* ============================================
   Sosyal Medya Ajansı - Ana Stil Dosyası
   Laravel: @include veya layout'ta global yükle
   ============================================ */

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #ec4899;
  --accent: #8b5cf6;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --light: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(236,72,153,0.1) 100%);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 64px rgba(99, 102, 241, 0.2);
  --shadow-glow: 0 8px 32px rgba(99, 102, 241, 0.35);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 20px 60px rgba(99, 102, 241, 0.18), 0 8px 24px rgba(15, 23, 42, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

/* ---- Typography ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 600px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 50px;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.45);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 16px 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
}

.navbar-custom {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 8px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.site-header.scrolled .navbar-custom {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
  backdrop-filter: none;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
}

.navbar-brand-custom img {
  width: 40px;
  height: 40px;
}

.nav-link-custom {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray) !important;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
  background: rgba(99, 102, 241, 0.08);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
}

.navbar-toggler {
  border: none;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25); }

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: var(--white);
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.footer-social a img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 0.875rem;
}

/* ---- Cards ---- */
.card-shadow {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: all var(--transition);
  height: 100%;
}

.card-shadow:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 1.75rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.card-icon.purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.card-icon.pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.card-icon.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.card-icon.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb-custom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.page-hero .breadcrumb-custom a { color: var(--primary); }

/* ---- Section spacing ---- */
.section-padding { padding: 100px 0; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
  position: relative;
}

.cta-banner .btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

/* ---- Stats ---- */
.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray);
  font-weight: 500;
}

/* ---- Form ---- */
.form-control-custom {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12), var(--shadow-md);
}

.form-label-custom {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
  display: block;
  color: var(--dark);
}

/* ---- Animations ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3); }
  50% { box-shadow: 0 8px 48px rgba(99, 102, 241, 0.5); }
}

.animate-float { animation: float 4s ease-in-out infinite; }

/* ---- Utilities ---- */
.bg-dots {
  background-image: radial-gradient(rgba(99,102,241,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .navbar-custom {
    border-radius: var(--radius);
    margin-top: 8px;
  }

  .section-padding { padding: 64px 0; }

  .cta-banner { padding: 40px 24px; }

  .page-hero { padding: 140px 0 60px; }
}

@media (max-width: 575.98px) {
  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
}
