/*--------------------------------------------------------------
# General Design System
--------------------------------------------------------------*/
:root {
  --primary-color: #0563bb;
  --text-color: #f2f3f5;
  --bg-color: #0c0c0e;
  --accent-color: #0088ff;
}

body {
  font-family: "Outfit", "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #5bb3ff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

/*--------------------------------------------------------------
# Header (Sidebar)
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  #header {
    width: 260px;
    background: #151719;
    left: -260px;
    border-right: 1px solid #2d3135;
  }
}

.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  height: 56px;
  width: 56px;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.nav-menu a i {
  font-size: 20px;
}

.nav-menu a span {
  display: none;
  color: #fff;
}

@media (min-width: 992px) {

  .nav-menu a:hover,
  .nav-menu .active,
  .nav-menu .active:focus,
  .nav-menu li:hover>a {
    color: #fff;
    background: var(--primary-color);
    width: 100%;
  }

  .nav-menu a:hover span,
  .nav-menu .active span,
  .nav-menu li:hover>a span {
    display: block;
    padding-left: 10px;
  }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  outline: none !important;
  background-color: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("https://www.sadicanozkaya.com.tr/assets/img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 100px;
  }
}

#hero:before {
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  inset: 0;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

#hero p {
  color: #ffffff;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: var(--accent-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
}

#hero .social-links {
  margin-top: 35px;
}

#hero .social-links a {
  font-size: 28px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  margin-right: 25px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-5px);
}

.hero-features {
  animation: heroFeaturesEntrance 1.2s ease-out;
}

@keyframes heroFeaturesEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item i {
  font-size: 22px;
  color: var(--accent-color);
}

.feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

.corner-email {
  position: fixed;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.corner-email.left {
  left: 50px;
}

.email-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.8;
}

.corner-email a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  display: block;
}

.corner-email:after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
  margin-top: 15px;
}

.corner-email a:hover {
  color: #fff;
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(0, 136, 255, 0.4);
}

@media (max-width: 991px) {
  .corner-email {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    width: 100%;
    justify-content: center;
  }

  .corner-email {
    display: none;
  }
}

/*--------------------------------------------------------------
# Profile Section
--------------------------------------------------------------*/
#profile {
  width: 100%;
  height: 100vh;
  background: url("https://www.sadicanozkaya.com.tr/assets/img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

#profile:before {
  content: "";
  background: rgba(0, 0, 0, 0.85);
  position: absolute;
  inset: 0;
  z-index: 1;
}

#profile .container {
  position: relative;
  z-index: 10;
}

.profile-card {
  max-width: 480px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  padding: 50px 40px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  animation: cardEntrance 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.profile-avatar-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 25px auto;
}

.profile-avatar-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.05);
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-indicator {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 5px solid #1a1b1e;
  background: #747f8d;
}

.status-online {
  background: #3ba55d;
  box-shadow: 0 0 15px #3ba55d;
}

.status-idle {
  background: #faa61a;
  box-shadow: 0 0 15px #faa61a;
}

.status-dnd {
  background: #ed4245;
  box-shadow: 0 0 15px #ed4245;
}

.profile-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, #a8a9b4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
  transition: 0.3s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.profile-content .profile-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 5px;
  opacity: 0.95;
}

.profile-content .profile-subtitle {
  font-size: 15px;
  color: #a8a9b4;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 400;
}

/* Spotify Widget */
.spotify-widget {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px;
  margin-top: 30px;
  transition: 0.3s;
  cursor: pointer;
}

.spotify-widget:hover {
  background: rgba(30, 215, 96, 0.03);
  border-color: rgba(30, 215, 96, 0.2);
}

.spotify-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

#spotify-album-art {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.spotify-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

#spotify-track-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

#spotify-artist-name {
  font-size: 14px;
  color: #1ed760;
  font-weight: 500;
}

/* Spotify Progress */
.spotify-progress-container {
  width: 100%;
  margin-top: 18px;
}

.spotify-time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  font-weight: 600;
}

.spotify-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, #1db954, #1ed760);
  width: 0%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(30, 215, 96, 0.4);
}

/* Footer & Toast */
.profile-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 25px;
  padding-top: 15px;
}

.view-counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}


#sharksac-page {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  background: url("https://www.sadicanozkaya.com.tr/assets/img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

#sharksac-page:before {
  content: "";
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

#sharksac-page .container {
  position: relative;
  z-index: 10;
}

.sharksac-card {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 60px 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: cardEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-tagline {
  font-size: 18px;
  color: #a8a9b4;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.feature-item.glass-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s ease;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 0;
}

.feature-item.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-color);
  transform: translateY(-8px);
}

.feature-item.glass-card i {
  font-size: 40px !important;
  color: var(--accent-color);
  background: rgba(0, 136, 255, 0.1);
  padding: 20px;
  border-radius: 20px;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.feature-text p {
  font-size: 14px;
  color: #a8a9b4;
  line-height: 1.6;
  margin: 0;
}

.sharksac-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.sharksac-body {
  text-align: left;
  line-height: 1.8;
  color: #a8a9b4;
}

.intro-text {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 25px;
}

.highlight-text {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 600;
  padding: 20px;
  background: rgba(0, 136, 255, 0.05);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  margin-top: 8px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.approach-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.approach-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 136, 255, 0.3);
}

.approach-item h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.approach-item h3 i {
  color: var(--accent-color);
  font-size: 22px;
}

.reason-list {
  padding-left: 0;
  list-style: none;
}

.reason-list li {
  margin-bottom: 12px;
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
}

.reason-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-top: 4px;
}

.accent-title {
  color: var(--accent-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reseller-tags .badge {
  background: rgba(0, 136, 255, 0.15) !important;
  color: #fff !important;
  border: 1px solid rgba(0, 136, 255, 0.3);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.reseller-tags .badge:hover {
  background: var(--accent-color) !important;
  box-shadow: 0 0 15px rgba(0, 136, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sharksac-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.stat-box h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(0, 136, 255, 0.3);
}

.stat-box small {
  color: #a8a9b4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 11px;
}

@media (max-width: 768px) {
  .sharksac-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
}