/* ===========================
   FARUK ARSLAN - PROFESSIONAL
   =========================== */

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

:root {
  --dark:    #1a1a1a;
  --navy:    #0f172a;
  --accent:  #E91E63;
  --accent-light: #F06292;
  --light:   #f9fafb;
  --mid:     #6b7280;
  --text:    #1f2937;
  --white:   #ffffff;
  --radius:  12px;
  --shadow:  0 8px 32px rgba(0,0,0,.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
  50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.6); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

@keyframes wave {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.btn-nav:hover { background: #C2185B; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4); text-decoration: none !important; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(-45deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #16213e 75%, #1a1a2e 100%);
  background-size: 400% 400%;
  animation: gradient-shift 8s ease infinite;
  padding: 140px 0 110px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(233,30,99,0.25) 0%, rgba(233,30,99,0) 70%);
  border-radius: 50%;
  animation: float 9s ease-in-out infinite;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(147,51,234,0.2) 0%, rgba(147,51,234,0) 70%);
  border-radius: 50%;
  animation: float 11s ease-in-out infinite reverse;
  filter: blur(40px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { animation: slideInLeft 0.8s ease-out; }

.hero-label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #d1d5db;
  margin-bottom: 42px;
  animation: fadeInUp 0.7s ease-out 0.3s both;
  line-height: 1.8;
  max-width: 500px;
}

.hero-sub strong { color: var(--accent); }

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
  transition: left 0.6s;
}

.btn-primary:hover {
  background: #C2185B;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.6);
  text-decoration: none;
  color: var(--white);
}

.btn-primary:hover::before { left: 100%; }

.btn-outline {
  display: inline-block;
  border: 2.5px solid rgba(255,255,255,.5);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  text-decoration: none;
  color: var(--white);
  transform: translateY(-3px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp 0.7s ease-out 0.5s both;
}

.hero-tags span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #e5e7eb;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Stats Card */
.stats-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 44px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  backdrop-filter: blur(12px);
  animation: slideInRight 0.8s ease-out;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.stat-item { text-align: center; }

.stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  animation: scaleIn 0.6s ease-out 0.5s both;
}

.stat-label {
  font-size: .85rem;
  color: #9ca3af;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.section-dark .section-label { color: var(--accent); }

.section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-dark h2 { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto;
}

/* About Intro - Profile Card */
.about-intro {
  text-align: center;
  margin-bottom: 80px;
}

.profile-card {
  display: inline-block;
  border: 2.5px solid var(--accent);
  border-radius: 20px;
  padding: 32px;
  background: var(--white);
  max-width: 320px;
  animation: scaleIn 0.6s ease-out;
  box-shadow: 0 12px 36px rgba(233, 30, 99, 0.1);
}

.profile-img-container {
  margin-bottom: 20px;
}

.profile-img {
  width: 240px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.profile-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.profile-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.profile-bio {
  font-size: .85rem;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

.profile-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.profile-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  color: var(--accent);
  transition: all 0.3s ease;
  border: 1.5px solid var(--accent);
}

.profile-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3);
  text-decoration: none;
}

/* About section */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.section-content p {
  color: var(--mid);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.expertise-box {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  animation: scaleIn 0.6s ease-out;
}

.expertise-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2.5px solid var(--accent);
  letter-spacing: -0.3px;
}

.expertise-list { list-style: none; }

.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: .96rem;
  color: var(--text);
  border-bottom: 1px solid #f3f4f6;
}

.expertise-list li:last-child { border-bottom: none; }

.check { color: var(--accent); font-weight: 800; flex-shrink: 0; font-size: 1.1rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2.4rem; margin-bottom: 16px; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p { font-size: .9rem; color: var(--mid); line-height: 1.6; }

/* Numbers */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.number-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  transition: all 0.35s ease;
}

.number-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.number {
  display: block;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.number-label {
  display: block;
  font-size: .92rem;
  color: #d1d5db;
  font-weight: 600;
}

.testimonial-note {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  animation: scaleIn 0.6s ease-out;
}

.testimonial-note p {
  font-size: 1.15rem;
  font-style: italic;
  color: #e5e7eb;
  margin-bottom: 16px;
  line-height: 1.8;
  font-weight: 500;
}

cite { color: var(--accent); font-size: .92rem; font-style: normal; font-weight: 700; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  transition: all 0.35s ease;
  animation: fadeInUp 0.6s ease-out;
}

.blog-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.blog-cat {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.blog-card h3 a { color: var(--dark); }

.blog-card h3 a:hover { color: var(--accent); text-decoration: none; }

.blog-card p { font-size: .92rem; color: var(--mid); margin-bottom: 18px; line-height: 1.6; }

.blog-link { font-size: .92rem; font-weight: 700; color: var(--accent); }

.blog-link:hover { color: var(--dark); text-decoration: none; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon { font-size: 1.6rem; flex-shrink: 0; }

.contact-item strong { display: block; font-size: .85rem; color: var(--mid); margin-bottom: 4px; font-weight: 700; }

.contact-item a, .contact-item span { font-size: .96rem; color: var(--text); font-weight: 500; }

.contact-item a:hover { color: var(--accent); text-decoration: none; }

.contact-cta-box {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  animation: scaleIn 0.6s ease-out;
}

.contact-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-cta-box p {
  color: #d1d5db;
  margin-bottom: 32px;
  font-size: .96rem;
  line-height: 1.7;
}

.btn-large { padding: 18px 40px; font-size: 1rem; }

.contact-note {
  margin-top: 18px !important;
  font-size: .8rem !important;
  color: #6b7280 !important;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-brand strong { color: var(--white); font-size: 1rem; font-weight: 900; }

.footer-brand span { font-size: .85rem; color: #6b7280; }

.footer-links { display: flex; gap: 28px; }

.footer-links a { color: #9ca3af; font-size: .92rem; font-weight: 600; }

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

.footer-copy { font-size: .8rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .stats-card { grid-template-columns: 1fr; }
  .section-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section h2 { font-size: 1.8rem; }
}
