/*

Çağrıbucks Radio - Elektromüzik Platformu

*/


/* Modern CSS Reset */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
  background: var(--white-color);
  line-height: 1.6;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #299da1;
  --secondary-color:              #A93F55;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --p-color:                      #299da1;
  --border-color:                 #A93F55;
  --featured-border-color:        #A93F55;

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               12px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

/* Body styles moved to reset section above */


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@-webkit-keyframes spinner {
  to {transform: rotate(360deg);}
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  -webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  -moz-box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
	background-color: var(--primary-color);
}

.custom-link:hover {
	background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

/* Sticky navbar stilleri kaldırıldı - scroll yapınca navbar kaybolacak */

.navbar {
  background: transparent;
  position: fixed;
  z-index: 9;
  right: 0;
  left: 0;
  transition: transform 0.3s ease-in-out;
  padding-top: 15px;
  padding-bottom: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  pointer-events: none;
}

.modern-navbar .container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 16px 28px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  box-shadow: 
    0 4px 20px -2px rgba(0, 0, 0, 0.08),
    0 2px 10px -2px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.modern-navbar .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.02) 30%,
      transparent 50%,
      rgba(255, 255, 255, 0.04) 70%,
      rgba(255, 255, 255, 0.10) 100%
    );
  pointer-events: none;
  border-radius: 20px;
  z-index: 2;
  mix-blend-mode: overlay;
}

.modern-navbar .container::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    radial-gradient(
      circle at 30% 50%,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.06) 20%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 25%,
      transparent 55%
    );
  animation: liquidGlass 20s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
  mix-blend-mode: soft-light;
}

@keyframes liquidGlass {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  20% {
    transform: translate(10%, 6%) rotate(72deg) scale(1.02);
    opacity: 0.7;
  }
  40% {
    transform: translate(6%, 14%) rotate(144deg) scale(1.05);
    opacity: 0.65;
  }
  60% {
    transform: translate(-6%, 10%) rotate(216deg) scale(1.04);
    opacity: 0.7;
  }
  80% {
    transform: translate(-10%, -6%) rotate(288deg) scale(1.03);
    opacity: 0.65;
  }
}

/* Navbar hover effect */
.modern-navbar .container:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.09) 100%
  );
  box-shadow: 
    0 6px 30px -3px rgba(0, 0, 0, 0.12),
    0 3px 15px -3px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Disable liquid animation for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .modern-navbar .container::after {
    animation: none;
    opacity: 0.4;
  }
}

.navbar .container {
  padding: 10px 25px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  pointer-events: auto;
}

/* Mobile container fixes */
@media screen and (max-width: 767px) {
  .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden;
  }
  
  .navbar .container {
    padding: 10px 15px !important;
    max-width: 100% !important;
  }
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.navbar-logo {
  height: 50px;
  width: auto;
  max-width: 180px;
  transition: all 0.3s ease;
}

.navbar-title {
  display: none;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  max-width: 180px;
  transition: all 0.3s ease;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 10;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.live-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff3b30;
  letter-spacing: 1px;
}

.modern-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: var(--white-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.modern-contact-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modern-contact-btn:active {
  transform: translateY(0);
}

.modern-contact-btn i {
  font-size: 1rem;
}

.modern-contact-btn span {
  display: none;
}

@media screen and (min-width: 576px) {
  .modern-contact-btn span {
    display: inline;
  }
}

/* Mobile optimizations for logo */
@media screen and (max-width: 768px) {
  .modern-navbar .container {
    padding: 14px 22px;
    border-radius: 18px;
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }
  
  .navbar-logo {
    height: 40px;
  }
  
  .navbar-brand img {
    height: 45px;
    max-width: 140px;
  }
  
  .navbar-actions {
    gap: 10px;
  }
  
  .live-indicator {
    padding: 4px 10px;
  }
  
  .live-text {
    font-size: 0.7rem;
  }
  
  .modern-contact-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .navbar .custom-btn {
    font-size: 12px;
    padding: 6px 12px;
    min-height: 30px;
  }
  
  .navbar-icon {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .modern-navbar .container {
    padding: 12px 18px;
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }
  
  .navbar-logo {
    height: 35px;
  }
  
  .navbar-brand img {
    height: 40px;
    max-width: 120px;
  }
  
  .navbar-actions {
    gap: 8px;
  }
  
  .live-indicator {
    padding: 3px 8px;
    gap: 4px;
  }
  
  .live-dot {
    width: 6px;
    height: 6px;
  }
  
  .live-text {
    font-size: 0.65rem;
  }
  
  .modern-contact-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .modern-contact-btn i {
    font-size: 0.9rem;
  }
  
  .navbar .custom-btn {
    font-size: 11px;
    padding: 5px 10px;
    min-height: 28px;
  }
}

/* Modern mobile optimizations */
@media screen and (max-width: 768px) {
  .navbar-icon {
    display: none;
  }
  
  .custom-input {
    -webkit-appearance: none;
    appearance: none;
  }
  
  .custom-btn-primary,
  .custom-btn-secondary {
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: calc(var(--menu-font-size) + 2px);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO - MODERN FLEX LAYOUT              
-----------------------------------------*/
main {
  position: relative;
  min-height: 100vh;
}

.hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8B2B3D 50%, var(--primary-color) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 20px 60px;
  position: relative;
  overflow: hidden;
}

/* Wave pattern background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(89, 157, 161, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(89, 157, 161, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(89, 157, 161, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Wave animation removed for cleaner design */

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

/*---------------------------------------
  DJ FLOATING BUTTON - BOTTOM RIGHT              
-----------------------------------------*/
.dj-floating-btn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 9999;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  animation: floatPulse 3s ease-in-out infinite;
}

.dj-floating-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(45deg, 
    var(--primary-color) 0%, 
    var(--secondary-color) 50%, 
    var(--primary-color) 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
  animation: rotateGlow 4s linear infinite;
  filter: blur(4px);
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      0 0 0 4px rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.4),
      0 0 0 4px rgba(255, 255, 255, 0.15);
  }
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dj-floating-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dj-floating-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 5px rgba(255, 255, 255, 0.2);
}

.dj-floating-btn:hover::before {
  opacity: 1;
  filter: blur(6px);
}

.dj-floating-btn:hover .dj-floating-avatar {
  border-color: rgba(255, 255, 255, 0.5);
}

.dj-floating-btn:active {
  transform: translateY(-5px) scale(1.05);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .dj-floating-btn {
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 15px;
  }
}

@media screen and (max-width: 480px) {
  .dj-floating-btn {
    width: 55px;
    height: 55px;
    bottom: 55px;
    right: 12px;
  }
}

/* Live Badge Styles - Hidden */
.live-badge {
  display: none;
}

.hero-title {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
  padding: 16px 32px;
  border-radius: 20px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  margin: 0;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.hero-title:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.radio-player {
  width: 100%;
  max-width: 550px;
  margin: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.radio-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.radio-player:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.iframe-wrapper {
  width: 100%;
  height: 110px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Iframe overlay efektleri */
.iframe-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(89, 157, 161, 0.1) 0%, 
    rgba(169, 63, 85, 0.05) 50%, 
    rgba(89, 157, 161, 0.1) 100%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.iframe-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 70%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

/* Radio overlay efektleri */
.radio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
  border-radius: 16px;
  overflow: hidden;
}

.radio-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(89, 157, 161, 0.1) 0%, 
    rgba(169, 63, 85, 0.05) 30%, 
    transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.radio-iframe {
  width: 100%;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  outline: none;
  display: block;
  position: relative;
  background: transparent;
  filter: 
    contrast(1.2) 
    brightness(1.1) 
    saturate(1.3) 
    hue-rotate(10deg)
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: perspective(1000px) rotateX(2deg);
}

.radio-iframe:hover {
  filter: 
    contrast(1.3) 
    brightness(1.15) 
    saturate(1.4) 
    hue-rotate(15deg)
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
  transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

/* Scroll bar'ları tamamen kaldır */
.radio-iframe::-webkit-scrollbar,
.iframe-wrapper::-webkit-scrollbar,
.radio-player::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.radio-iframe,
.iframe-wrapper,
.radio-player {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  overflow: hidden !important;
}

/* Iframe içeriğini kontrol et */
.radio-iframe iframe {
  overflow: hidden !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

/* Global scroll bar gizleme - sadece radio player için */
.radio-player * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.radio-player *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.genres-section {
  margin-top: 1rem;
}

.genres-btn {
  background: rgba(89, 157, 161, 0.15);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: 20px;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.genres-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 0.5s ease;
}

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

.genres-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.genres-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Mobile optimizations */
@media screen and (max-width: 768px) {
  .hero {
    padding: 100px 15px 60px;
    min-height: 100vh;
  }
  
  .hero-content {
    gap: 0;
  }
  
  .radio-player {
    max-width: 100%;
    padding: 20px;
    border-radius: 24px;
  }
  
  .hero-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    padding: 10px 20px;
  }
  
  .modern-radio-player {
    max-width: 100%;
    margin: 0.5rem auto;
  }
  
  .site-footer {
    padding: 8px 0;
  }
  
  .copyright-text-wrap {
    padding: 0 15px;
  }
  
  .copyright-text-wrap p,
  .copyright-text {
    font-size: 10px;
  }
  
  .copyright-text-wrap p {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .copyright-text-wrap .mx-2 {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding: 90px 10px 55px;
    min-height: 100vh;
  }
  
  .radio-player {
    padding: 16px;
    border-radius: 20px;
  }
  
  .hero-title {
    font-size: clamp(1rem, 6vw, 1.5rem);
    padding: 8px 16px;
  }
  
  .modern-radio-player {
    margin: 0.3rem auto;
    padding: 16px;
  }
  
  .site-footer {
    padding: 6px 0;
  }
  
  .copyright-text-wrap {
    padding: 0 10px;
  }
  
  .copyright-text-wrap p,
  .copyright-text {
    font-size: 9px;
  }
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}


/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
	height: 120px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 240px 40px;
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}


/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
}

.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 60px 30px 30px 30px;
  height: 100%;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER - FIXED              
-----------------------------------------*/
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  background: transparent;
  text-align: center;
  z-index: 100;
  width: 100%;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.copyright-text {
  padding-right: 10px;
  margin-right: 10px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.7);
}

.copyright-text-wrap a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM MODAL STYLES               
-----------------------------------------*/
.custom-modal {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-radius: var(--border-radius-medium);
  border: 2px solid var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(41, 157, 161, 0.3);
  -webkit-box-shadow: 0 1rem 3rem rgba(41, 157, 161, 0.3);
  -moz-box-shadow: 0 1rem 3rem rgba(41, 157, 161, 0.3);
  backdrop-filter: blur(10px);
}

.custom-modal-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8B2B3D 50%, var(--primary-color) 100%);
  color: var(--white-color);
  border-bottom: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
  position: relative;
  overflow: hidden;
}

.custom-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(89, 157, 161, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.custom-modal-header .modal-title {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  position: relative;
  z-index: 1;
}

.custom-close {
  filter: invert(1);
  position: relative;
  z-index: 1;
}

.custom-input {
  border: 2px solid rgba(41, 157, 161, 0.3);
  border-radius: var(--border-radius-small);
  padding: 12px 16px;
  font-size: var(--p-font-size);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  background: var(--white-color);
}

.custom-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(41, 157, 161, 0.25);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(41, 157, 161, 0.25);
  -moz-box-shadow: 0 0 0 0.2rem rgba(41, 157, 161, 0.25);
  outline: none;
  background: var(--white-color);
}

.custom-input::placeholder {
  color: var(--primary-color);
  opacity: 0.6;
}

.custom-btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: 2px solid var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

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

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

.custom-btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  border-color: var(--secondary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgba(41, 157, 161, 0.4);
  -webkit-box-shadow: 0 1rem 3rem rgba(41, 157, 161, 0.4);
  -moz-box-shadow: 0 1rem 3rem rgba(41, 157, 161, 0.4);
}

.custom-btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.custom-btn-secondary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(41, 157, 161, 0.3);
}

.custom-btn-success {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7a7d 100%);
  border: 2px solid var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-large);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-modal-footer {
  border-top: 2px solid rgba(41, 157, 161, 0.2);
  background: linear-gradient(135deg, rgba(249, 249, 249, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
}

.form-label {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 8px;
}

/*---------------------------------------
  BOOTSTRAP UTILITY ENHANCEMENTS               
-----------------------------------------*/
.text-decoration-none {
  text-decoration: none !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.justify-content-center {
  justify-content: center !important;
}

.text-center {
  text-align: center !important;
}

.align-items-center {
  align-items: center !important;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 650px;
  }
  
  .hero-title,
	.hero h2 {
	  font-size: var(--h2-font-size);
	}
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 12px !important;
    padding: 6px 12px !important;
    min-height: 30px !important;
  }
  
  .navbar-icon {
    display: none !important;
  }

  /* Bu kural yukarıda güncellendi */

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 400px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p,
  ul li {
    font-size: 16px;
  }

  .hero-title {
    font-size: 14px !important;
    white-space: nowrap;
  }

  .hero h2 {
    font-size: 24px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 11px !important;
    padding: 5px 10px !important;
    min-height: 28px !important;
  }
  
  .navbar-icon {
    display: none !important;
  }

  /* Bu kural yukarıda güncellendi */

  .navbar-icon {
    font-size: var(--copyright-fluid-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }
}

/*---------------------------------------
  MODERN RADIO PLAYER               
-----------------------------------------*/
.modern-radio-player {
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.modern-radio-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  pointer-events: none;
}

/* Radio Header - Hidden */
.radio-header {
  display: none;
}

.radio-minimize-btn,
.radio-menu-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.radio-minimize-btn:hover,
.radio-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Radio Visualizer */
.radio-visualizer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: 20px;
  padding: 30px 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  overflow: hidden;
}

.album-art {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: albumPulse 3s ease-in-out infinite;
}

.album-art:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 4px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes albumPulse {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.4),
      0 0 0 3px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 10px 36px rgba(0, 0, 0, 0.45),
      0 0 0 3px rgba(255, 255, 255, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

.audio-waveform {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 20px;
  opacity: 0.3;
  z-index: 1;
}

.wave-bar {
  width: 3px;
  background: linear-gradient(to top, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.8) 100%);
  border-radius: 3px;
  animation: waveAnimation 1.5s ease-in-out infinite;
  min-height: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.wave-bar:nth-child(1) { height: 25px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 55px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 60px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 35px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 50px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 25px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 40px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 20px; animation-delay: 1.0s; }
.wave-bar:nth-child(12) { height: 55px; animation-delay: 1.1s; }
.wave-bar:nth-child(13) { height: 30px; animation-delay: 1.2s; }
.wave-bar:nth-child(14) { height: 60px; animation-delay: 1.3s; }
.wave-bar:nth-child(15) { height: 35px; animation-delay: 1.4s; }
.wave-bar:nth-child(16) { height: 50px; animation-delay: 1.5s; }
.wave-bar:nth-child(17) { height: 25px; animation-delay: 1.6s; }
.wave-bar:nth-child(18) { height: 40px; animation-delay: 1.7s; }
.wave-bar:nth-child(19) { height: 20px; animation-delay: 1.8s; }
.wave-bar:nth-child(20) { height: 55px; animation-delay: 1.9s; }

@keyframes waveAnimation {
  0%, 100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.9;
  }
}

/* Radio Info */
.radio-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.song-info {
  flex: 1;
}

.song-title {
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.artist-name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  font-weight: var(--font-weight-normal);
}

.radio-settings-btn {
  display: none;
}

/* Radio Progress - Hidden */
.radio-progress {
  display: none;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%, 
    var(--secondary-color) 100%);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
}

.progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: var(--white-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: grab;
  transition: all 0.2s ease;
}

.progress-handle:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.progress-handle:active {
  cursor: grabbing;
}

/* Radio Controls */
.radio-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.control-btn {
  display: none;
}

.control-btn.play-btn {
  display: flex;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: var(--white-color);
  color: var(--secondary-color);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  padding: 0;
  margin: 0;
  position: relative;
  line-height: 0;
  vertical-align: middle;
}

.play-btn i {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
}

.play-btn .bi-play-fill {
  margin-left: 3px;
}

.play-btn .bi-pause-fill {
  margin-left: 0;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

/* Radio Utilities */
.radio-utilities {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.utility-btn {
  display: none;
}

.utility-btn.volume-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.utility-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.favorite-btn.active {
  color: var(--secondary-color);
  background: rgba(169, 63, 85, 0.2);
}

/* Volume Control */
.volume-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  min-width: 200px;
  max-width: 280px;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.volume-control.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

.volume-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--white-color);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
  margin-top: -5px;
}

.volume-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.volume-slider::-webkit-slider-thumb:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--white-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.volume-slider::-moz-range-thumb:active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.volume-slider::-webkit-slider-runnable-track {
  background: linear-gradient(
    to right,
    var(--white-color) 0%,
    var(--white-color) var(--volume-percentage, 80%),
    rgba(255, 255, 255, 0.2) var(--volume-percentage, 80%),
    rgba(255, 255, 255, 0.2) 100%
  );
  height: 6px;
  border-radius: 3px;
}

.volume-slider::-moz-range-track {
  background: rgba(255, 255, 255, 0.2);
  height: 6px;
  border-radius: 3px;
}

.volume-slider::-moz-range-progress {
  background: var(--white-color);
  height: 6px;
  border-radius: 3px;
}

.volume-percentage {
  color: var(--white-color);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.95;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .modern-radio-player {
    max-width: 100%;
    margin: 1.5rem 0;
    padding: 16px;
  }
  
  .radio-visualizer {
    padding: 20px 15px;
  }
  
  .audio-waveform {
    height: 50px;
    gap: 2px;
  }
  
  .wave-bar {
    width: 3px;
  }
  
  .song-title {
    font-size: 1.1rem;
  }
  
  .artist-name {
    font-size: 0.85rem;
  }
  
  .control-btn {
    width: 45px;
    height: 45px;
  }
  
  .play-btn {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  
  .play-btn .bi-play-fill {
    margin-left: 2px;
  }
  
  .radio-controls {
    gap: 15px;
  }
  
  .volume-control {
    min-width: 180px;
    max-width: 240px;
    padding: 14px 18px;
  }
  
  .volume-percentage {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .modern-radio-player {
    padding: 12px;
  }
  
  .radio-visualizer {
    padding: 15px 10px;
  }
  
  .audio-waveform {
    height: 40px;
    gap: 1px;
  }
  
  .wave-bar {
    width: 2px;
  }
  
  .control-btn {
    width: 40px;
    height: 40px;
  }
  
  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .play-btn .bi-play-fill {
    margin-left: 2px;
  }
  
  .radio-controls {
    gap: 12px;
  }
  
  .volume-control {
    min-width: 160px;
    max-width: 200px;
    padding: 12px 16px;
  }
  
  .volume-percentage {
    font-size: 0.75rem;
  }
}

/*---------------------------------------
  DROPDOWN STYLING               
-----------------------------------------*/
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}

.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown-menu {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: var(--border-radius-large);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 12px 0;
  margin-top: 8px;
  min-width: 180px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}

.dropdown-item {
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  border-radius: var(--border-radius-large);
  margin: 2px 8px;
}

.dropdown-item:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateX(4px);
}

.dropdown-item:focus {
  background: var(--primary-color);
  color: var(--white-color);
  outline: none;
}

/* Mobile optimizations for dropdown */
@media screen and (max-width: 768px) {
  .dropdown-menu {
    min-width: 160px;
    font-size: 14px;
  }
  
  .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .dropdown-menu {
    min-width: 140px;
  }
  
  .dropdown-item {
    padding: 8px 16px;
    font-size: 13px;
  }
}
