body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #e3f0fa 0%, #f8fafc 100%);
}
body::before, body::after {
  display: none !important;
}
/* Modern outline desenler */
body .bg-outline-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}
body .bg-outline-shape.circle1 {
  left: 2vw; top: 8vh;
  width: 220px; height: 220px;
  border: 2.5px solid #42a5f5;
  border-radius: 50%;
  background: none;
}
body .bg-outline-shape.circle2 {
  right: 4vw; bottom: 10vh;
  width: 160px; height: 160px;
  border: 2.5px solid #1976d2;
  border-radius: 50%;
  background: none;
}
body .bg-outline-shape.line1 {
  left: 10vw; bottom: 18vh;
  width: 120px; height: 2px;
  background: linear-gradient(90deg, #42a5f5 0%, #1976d2 100%);
  border-radius: 2px;
}
body .bg-outline-shape.line2 {
  right: 12vw; top: 16vh;
  width: 80px; height: 2px;
  background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
  border-radius: 2px;
}
body {
  background-image:
    url('https://www.transparenttextures.com/patterns/asfalt-light.png'),
    linear-gradient(120deg, #0a2540 60%, #1565c0 100%);
  background-blend-mode: overlay;
}

/* Sadece ana menüye flex uygula */
ul.main-navbar-nav {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 0;
padding-left: 0;
list-style: none;
}

/* Alt menü (dropdown) asla flex olmasın! */
ul.main-navbar-nav ul,
ul.main-navbar-nav .menus {
display: block !important;
gap: 0 !important;
flex-direction: column !important;
position: absolute;
background: white;
border-radius: 8px;
min-width: 180px;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
z-index: 999;
margin-top: 0.5rem;
padding: 0.5rem 0;
}

/* Alt menü linkleri */
ul.main-navbar-nav .menus li a {
padding: 10px 16px;
color: #333;
display: block;
text-decoration: none;
border-radius: 4px;
}
ul.main-navbar-nav .menus li a:hover {
background: #f0f4ff;
}

/* Modern ve göze hitap eden form kutusu */
.header-search-form-box {
  background: rgba(255,255,255,0.85) !important;
  border: 1.5px solid #e3e8f0 !important;
  border-radius: 32px !important;
  box-shadow: 0 4px 24px 0 rgba(10,37,64,0.08);
  padding: 0 0.7rem !important;
  max-width: 380px !important;
  margin: 0 0 0 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  height: 44px !important;
}

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

.header-search-form-li {
  display: flex !important;
  align-items: center !important;
  height: 44px !important;
  margin-left: 0 !important;
}

.header-search-form {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  height: 100% !important;
  margin: auto;
}

.header-phone-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(66,165,245,0.07);
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid transparent;
}
.header-phone-group:focus-within {
  box-shadow: 0 0 0 2px #42a5f5, 0 2px 8px rgba(66,165,245,0.13);
  border-color: transparent;
}
.header-phone-group.error {
  border-color: #ed4c78;
  box-shadow: 0 0 0 2px rgba(237,76,120,0.25);
}

#dialing_code {
  width: 44px !important;
  min-width: 36px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  color: #0a2540 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 0 !important;
  height: 36px !important;
  line-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.header-phone-input {
  width: 150px !important;
  max-width: 150px !important;
  height: 36px !important;
  background: #f5f7fa !important;
  border-radius: 10px !important;
  border: none !important;
  color: #0a2540 !important;
  font-size: 16px !important;
  font-family: 'Menlo', 'Consolas', monospace !important;
  padding: 0 10px !important;
  outline: none !important;
  transition: box-shadow 0.2s;
  box-shadow: none !important;
  letter-spacing: 2px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
}
.header-phone-input:focus {
  box-shadow: 0 0 0 2px #42a5f5 !important;
}

.btnphonelookup {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%) !important;
  box-shadow: 0 2px 8px rgba(66,165,245,0.10);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s, transform 0.2s;
  border: none !important;
  padding: 0 !important;
  margin-left: 2px !important;
}
.btnphonelookup:hover {
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%) !important;
  transform: scale(1.07);
}

@media (max-width: 575px) {
  .header-search-form-box {
    max-width: 100% !important;
    padding: 0 0.2rem !important;
    gap: 6px !important;
    height: 38px !important;
  }
  .header-search-form-li, .header-search-form {
    height: 38px !important;
  }
  .header-phone-group {
    height: 100% !important;
  }
  .header-phone-input {
    width: 100% !important;
    min-width: 80px !important;
    max-width: 100% !important;
    height: 32px !important;
    font-size: 15px !important;
    padding: 0 4px !important;
  }
  .btnphonelookup {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
  }
}

ul.main-navbar-nav .menus {
    display: none !important;
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    z-index: 999;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }
  ul.main-navbar-nav li.menu:hover > .menus {
    display: block !important;
  }
  ul.main-navbar-nav .menus li a {
    padding: 10px 16px;
    color: #333;
    display: block;
    text-decoration: none;
    border-radius: 4px;
  }
  ul.main-navbar-nav .menus li a:hover {
    background: #f0f4ff;
  }


ul.main-navbar-nav li.menu {
position: relative;
}

ul.main-navbar-nav .menus {
display: none !important;
position: absolute;
left: 0;
right: auto;
top: 100%;
background: white;
border-radius: 8px;
min-width: 180px;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
z-index: 999;
margin-top: 0; /* Aradaki boşluğu kaldır */
padding: 0.5rem 0;
list-style: none; /* Madde işaretini kaldır */
pointer-events: auto;
}

ul.main-navbar-nav li.menu:hover > .menus,
ul.main-navbar-nav li.menu:focus-within > .menus {
display: block !important;
}

/* Alt menüdeki linkler */
ul.main-navbar-nav .menus li a {
padding: 10px 16px;
color: #333;
display: block;
text-decoration: none;
border-radius: 4px;
}
ul.main-navbar-nav .menus li a:hover {
background: #f0f4ff;
}

.flag-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
}

.form-text {
  font-size: 11px;
  margin-top: 2px;
  color: #6c757d;
}

.input-card-form {
  position: relative;
  flex: 1;
}

.input-card-form input {
  padding-right: 8px;
  font-size: 14px;
}

.input-card-form input::placeholder {
  color: #6c757d;
  font-size: 13px;
}

@media (max-width: 575px) {
  .form-text {
    display: none;
  }
}

/* Hero Form Styles */
.hero-search-form-box {
  background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
  border: none;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(66,165,245,0.13), 0 1.5px 8px 0 rgba(10,37,64,0.08);
  padding: 0.9rem 1.5rem;
  max-width: 480px;
  margin: 2.2rem 0.5rem 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-search-form-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(66, 165, 245, 0.1) 25%,
    rgba(25, 118, 210, 0.2) 50%,
    rgba(66, 165, 245, 0.1) 75%,
    transparent 100%
  );
  animation: rotate 3s linear infinite;
  z-index: 0;
}

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

.hero-search-form-box:focus-within::after {
  animation: rotate 1.5s linear infinite;
}

.hero-search-form {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  justify-content: center;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Remove duplicate styles */
@media (max-width: 575px) {
  .hero-search-form-box {
    max-width: 100%;
    padding: 0.5rem 0.5rem;
    gap: 8px;
    border-radius: 18px;
  }
}

.hero-section .col-lg-6 img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-section .col-lg-6 img:hover {
  filter: drop-shadow(0 15px 30px rgba(66,165,245,0.3));
  transform: scale(1.02);
}

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

.hero-content h1 {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 15px rgba(66,165,245,0.3);
  animation: fadeInDown 1s ease-out;
  background: linear-gradient(120deg, #ffffff 0%, #e3f2fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #42a5f5, #1976d2);
  border-radius: 2px;
  animation: slideIn 1s ease-out 0.5s both;
}

.hero-content p.lead {
  color: #e3f2fd;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  animation: fadeInUp 1s ease-out 0.3s both;
  text-shadow: 0 2px 10px rgba(66,165,245,0.2);
  max-width: 600px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

.hero-section {
  background: linear-gradient(135deg, #0a2540 0%, #1565c0 100%);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80') center/cover;
  opacity: 0.1;
  animation: zoomIn 20s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.95) 0%, rgba(21,101,192,0.85) 100%);
  z-index: 1;
}

/* Animasyonlu şekiller */
.hero-section .shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  animation: rotate 20s linear infinite;
  z-index: 2;
}

.hero-section .shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  animation: rotate 15s linear infinite reverse;
  z-index: 2;
}

.hero-section .shape-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 50%;
  right: 10%;
  animation: pulse 4s ease-in-out infinite;
  z-index: 2;
}

.hero-section .shape-4 {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 20%;
  left: 5%;
  animation: rotate 18s linear infinite;
  z-index: 2;
}

.hero-section .shape-5 {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
  animation: pulse 5s ease-in-out infinite;
  z-index: 2;
}

.hero-section .shape-6 {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 30%;
  left: 25%;
  animation: rotate 25s linear infinite reverse;
  z-index: 2;
}

.hero-section .shape-7 {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 15%;
  right: 25%;
  animation: pulse 6s ease-in-out infinite;
  z-index: 2;
}

.hero-section .shape-8 {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: 30%;
  left: 15%;
  animation: rotate 22s linear infinite;
  z-index: 2;
}

.hero-section .shape-9 {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 40%;
  right: 35%;
  animation: pulse 7s ease-in-out infinite;
  z-index: 2;
}

.hero-section .shape-10 {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: 10%;
  right: 5%;
  animation: rotate 28s linear infinite reverse;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

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

}

.animated-bg-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  border-radius: 50%;
  filter: blur(1px);
  animation: bgfloat 18s linear infinite;
}
.animated-bg-shape.shape1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #42a5f5 0%, #1976d2 100%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.animated-bg-shape.shape2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, #1976d2 0%, #42a5f5 100%);
  bottom: 8%; right: -80px;
  animation-delay: 6s;
}
.animated-bg-shape.shape3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, #42a5f5 0%, #1976d2 100%);
  bottom: 18%; left: 8%;
  animation-delay: 12s;
}
@keyframes bgfloat {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.08) translateY(30px); }
  100% { transform: scale(1) translateY(0); }
}

#animated-stars-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

@media (max-width: 575px) {
  /* Dalga geçişini gizle */
  .minimal-wave-transition {
    display: none !important;
  }
  /* Numara formu ile dalga arasında boşluk */
  .hero-search-form-box {
    margin-bottom: 32px !important;
  }
}

.hs-has-sub-menu:hover .hs-sub-menu{
  display:block;
}
#navbarNavDropdown ul.navbar-nav a.btn{
  width:100px;
}
.features-megemenu a{
  color:#377dff;
}
.features-megemenu .dropdown-toggle::after{
  margin-left:0;
}
@media (max-width: 991px) {
  #navbarNavDropdown {
    background: linear-gradient(1deg, #1976d2, transparent);
    padding: 1rem 0;
    border-radius: 0;
    margin-top: 0;
  }
  .navbar-nav .nav-link,
  .navbar-nav .dropdown-toggle {
    color: #0a2540 !important;
    font-size: 1rem;
    font-weight: 500;
    opacity: 1 !important;
    text-shadow: none;
    background: none;
    border-radius: 0;
    padding: 0.5rem 1rem;
  }
  .dropdown-menu {
    background: linear-gradient(98deg, #1976d2, transparent);
    border: 1px solid #42a5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }
  .dropdown-item {
    color: #ffffff !important;
    font-weight: 400;
    opacity: 1 !important;
    border-radius: 4px;
    padding: 0.7rem 1.2rem;
  }
  .dropdown-item:hover {
    background: #f0f4ff;
    color: #1976d2 !important;
  }
  .header-search-form-box {
    background: rgba(255,255,255,0.85) !important;
    border: 1.5px solid #e3e8f0 !important;
    box-shadow: 0 4px 24px 0 rgba(10,37,64,0.08);
  }
  .header-phone-input {
    background: #f5f7fa !important;
    color: #0a2540 !important;
    border-radius: 10px !important;
    border: none !important;
  }
  .btnphonelookup {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%) !important;
    color: #fff !important;
  }
}
@media (max-width: 767.98px) {
  .navbar-absolute-lg-top .navbar-absolute-top-scroller,
  .navbar-absolute-sm-top .navbar-absolute-top-scroller,
  .navbar-absolute-top .navbar-absolute-top-scroller {
    max-height: 75vh;
    background-color: #0055a8;
    overflow: hidden;
    overflow-y: auto;
  }
}
.navbar-moved-up{
transform:unset;
}
.navbar-brand svg{
width: clamp(250px,19vw,250px);
}
#header {
  background: linear-gradient(135deg, #0d253d 0%, #195392 100%) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transform: translateY(0);
}

#header.scrolled {
  background: linear-gradient(135deg, #0d253d 0%, #195392 100%) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

#header.scroll-down {
  transform: translateY(-100%);
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #e3f2fd !important;
}

.header-search-form-box {
  background: rgba(10, 37, 64, 0.05);
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  max-width: 400px;
  margin-left: auto;
}

.header-search-form input {
  background: transparent;
  border: none;
  color: #0a2540;
}

.header-search-form input::placeholder {
  color: rgba(10, 37, 64, 0.7);
}

.btnphonelookup {
  background: #42a5f5;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btnphonelookup:hover {
  background: #1976d2;
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

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

.navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler svg {
  color: #ffffff;
}

.navbar-brand svg path {
  fill: #ffffff;
}

#header.scrolled .navbar-brand svg path {
  fill: #ffffff;
}
 #header {
      background: linear-gradient(135deg, #0d253d 0%, #195392 100%) !important;
      backdrop-filter: blur(10px);
      padding: 1rem 0;
      transition: all 0.3s ease;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    #header.scrolled {
      background: linear-gradient(135deg, #0d253d 0%, #195392 100%) !important;
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
      padding: 0.5rem 0;
    }

    .navbar-nav .nav-link {
      color: #ffffff !important;
      font-weight: 500;
      padding: 0.5rem 1rem;
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #e3f2fd !important;
    }

    .header-search-form-box {
      background: rgba(10, 37, 64, 0.05);
      border: 1px solid rgba(10, 37, 64, 0.1);
      border-radius: 50px;
      padding: 0.5rem 1rem;
    }

    .header-search-form input {
      background: transparent;
      border: none;
      color: #0a2540;
    }

    .header-search-form input::placeholder {
      color: rgba(10, 37, 64, 0.7);
    }

    .btnphonelookup {
      background: #42a5f5;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .btnphonelookup:hover {
      background: #1976d2;
      transform: scale(1.05);
    }

    .navbar-toggler {
      border: none;
      padding: 0;
    }

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

    .navbar-toggler-icon {
      background-image: none;
    }

    .navbar-toggler svg {
      color: #ffffff;
    }

    .navbar-brand svg path {
      fill: #ffffff;
    }

    #header.scrolled .navbar-brand svg path {
      fill: #ffffff;
    }

     .hero-section {
      background: linear-gradient(135deg, #0a2540 0%, #1565c0 100%);
      padding: 100px 0;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80') center/cover;
      opacity: 0.1;
      animation: zoomIn 20s ease-in-out infinite alternate;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(10,37,64,0.95) 0%, rgba(21,101,192,0.85) 100%);
      z-index: 1;
    }

    /* Animasyonlu şekiller */
    .hero-section .shape-1 {
      position: absolute;
      width: 300px;
      height: 300px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      top: -150px;
      right: -150px;
      animation: rotate 20s linear infinite;
      z-index: 2;
    }

    .hero-section .shape-2 {
      position: absolute;
      width: 200px;
      height: 200px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      bottom: -100px;
      left: -100px;
      animation: rotate 15s linear infinite reverse;
      z-index: 2;
    }

    .hero-section .shape-3 {
      position: absolute;
      width: 150px;
      height: 150px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      top: 50%;
      right: 10%;
      animation: pulse 4s ease-in-out infinite;
      z-index: 2;
    }

    .hero-section .shape-4 {
      position: absolute;
      width: 180px;
      height: 180px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      top: 20%;
      left: 5%;
      animation: rotate 18s linear infinite;
      z-index: 2;
    }

    .hero-section .shape-5 {
      position: absolute;
      width: 120px;
      height: 120px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      bottom: 20%;
      right: 15%;
      animation: pulse 5s ease-in-out infinite;
      z-index: 2;
    }

    .hero-section .shape-6 {
      position: absolute;
      width: 250px;
      height: 250px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      top: 30%;
      left: 25%;
      animation: rotate 25s linear infinite reverse;
      z-index: 2;
    }

    .hero-section .shape-7 {
      position: absolute;
      width: 160px;
      height: 160px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      top: 15%;
      right: 25%;
      animation: pulse 6s ease-in-out infinite;
      z-index: 2;
    }

    .hero-section .shape-8 {
      position: absolute;
      width: 220px;
      height: 220px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      bottom: 30%;
      left: 15%;
      animation: rotate 22s linear infinite;
      z-index: 2;
    }

    .hero-section .shape-9 {
      position: absolute;
      width: 140px;
      height: 140px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      top: 40%;
      right: 35%;
      animation: pulse 7s ease-in-out infinite;
      z-index: 2;
    }

    .hero-section .shape-10 {
      position: absolute;
      width: 280px;
      height: 280px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      bottom: 10%;
      right: 5%;
      animation: rotate 28s linear infinite reverse;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
    }

    .search-box {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-top: 30px;
    }

    .features-section {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .feature-card {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      background: #e3f2fd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-icon i {
      font-size: 24px;
      color: #1976d2;
    }

    .stats-section {
      background: #0a2540;
      color: white;
      padding: 60px 0;
    }

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

    .stat-number {
      font-size: 48px;
      font-weight: bold;
      color: #42a5f5;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 18px;
      color: #e3f2fd;
    }

    .hero-search-form-box {
      background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
      border: none;
      border-radius: 28px;
      box-shadow: 0 8px 32px 0 rgba(66,165,245,0.13), 0 1.5px 8px 0 rgba(10,37,64,0.08);
      padding: 0.9rem 1.5rem;
      max-width: 480px;
      margin: 2.2rem 0.5rem 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 18px;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
    }

    .hero-search-form-box::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(66, 165, 245, 0.1) 25%,
        rgba(25, 118, 210, 0.2) 50%,
        rgba(66, 165, 245, 0.1) 75%,
        transparent 100%
      );
      animation: rotate 3s linear infinite;
      z-index: 0;
    }

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

    .hero-search-form-box:focus-within::before {
      animation: borderSpin 2s linear infinite;
    }

    .hero-search-form {
      display: flex;
      align-items: center;
      gap: 11px;
      width: 100%;
      justify-content: center;
      margin: auto;
      position: relative;
      z-index: 1;
    }
    .hero-flag-container {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: #f5f7fa;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(66,165,245,0.10);
      border: 1.5px solid #e3e8f0;
      transition: box-shadow 0.2s, border 0.2s;
    }
    .hero-flag-container img {
      width: 26px;
      height: 18px;
    }
    .hero-dialing-code {
      font-size: 18px;
      font-weight: 700;
      color: #1565c0;
      margin-left: 6px;
      margin-right: 6px;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      font-family: 'Inter', 'Menlo', 'Consolas', monospace;
    }
    .hero-phone-input-container {
      position: relative;
      width: 180px;
      height: 38px;
      display: block;
      overflow: hidden;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(66,165,245,0.07);
      transition: box-shadow 0.2s, border 0.2s;
      border: 1.5px solid transparent;
    }
    .hero-phone-input-container:focus-within {
      box-shadow: 0 0 0 2px #42a5f5, 0 2px 8px rgba(66,165,245,0.13);
      border-color: transparent;
    }
    .hero-phone-input-container.error {
      border-color: #ed4c78;
      box-shadow: 0 0 0 2px rgba(237,76,120,0.25);
    }
    .hero-phone-input-mask {
      font-size: 16px;
      font-family: 'Menlo', 'Consolas', monospace;
      letter-spacing: 2px;
      color: #b0b8c1;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      line-height: 38px;
      padding: 0 12px;
      z-index: 2;
      background: transparent;
      box-sizing: border-box;
      display: block;
      vertical-align: middle;
    }
    .hero-phone-input {
      font-size: 16px;
      font-family: 'Menlo', 'Consolas', monospace;
      letter-spacing: 2px;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      border: none;
      color: #0a2540;
      padding: 0 12px;
      outline: none;
      z-index: 3;
      box-shadow: none;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      line-height: 38px;
      box-sizing: border-box;
      text-align: left;
      display: block;
      vertical-align: middle;
      transition: box-shadow 0.2s;
    }
    .hero-phone-input:focus {
      box-shadow: 0 0 0 2px #42a5f5;
    }
    .hero-btnphonelookup {
      width: 44px;
      height: 44px;
      min-width: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
      box-shadow: 0 2px 8px rgba(66,165,245,0.13);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      border: none;
      padding: 0;
      margin-left: 2px;
    }
    .hero-btnphonelookup:hover {
      background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
      transform: scale(1.09);
      box-shadow: 0 4px 16px rgba(66,165,245,0.18);
    }
    @media (max-width: 575px) {
      .hero-search-form-box {
        max-width: 100%;
        padding: 0.5rem 0.5rem;
        gap: 8px;
        border-radius: 18px;
      }
      .hero-phone-input-container {
        width: 100%;
        min-width: 100px;
        max-width: 100%;
        height: 32px;
        border-radius: 7px;
      }
      .hero-phone-input,
      .hero-phone-input-mask {
        font-size: 15px !important;
        font-family: 'Menlo', 'Consolas', monospace !important;
        letter-spacing: 2px !important;
        height: 32px !important;
        line-height: 32px !important;
        padding: 0 6px !important;
        box-sizing: border-box !important;
      }
      .hero-btnphonelookup {
        width: 36px;
        height: 36px;
        min-width: 36px;
      }
    }
    @media (max-width: 575px) {
.input-card {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 4px 0 !important;
}
.input-card select.flag-dropdown {
  width: 48px !important;
  min-width: 40px !important;
  max-width: 60px !important;
  padding: 0 !important;
  margin-right: 2px !important;
}
.input-card #dialing_code {
  width: 40px !important;
  min-width: 35px !important;
  max-width: 50px !important;
  padding: 0 !important;
  margin-right: 2px !important;
  text-align: center !important;
}
.input-card-form {
  flex: 1 1 80px !important;
  min-width: 60px !important;
  margin-right: 2px !important;
}
.input-card-form input {
  width: 100% !important;
  font-size: 16px !important;
  padding: 2px 4px !important;
}
.btnphonelookup {
  flex: 0 0 38px !important;
  max-width: 38px !important;
  min-width: 32px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
}
@media (max-width: 575px) {
.input-card select.flag-dropdown,
.btnphonelookup {
  height: 40px !important;
  width: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btnphonelookup svg {
  width: 24px !important;
  height: 24px !important;
  display: block;
  margin: 0 auto;
}
}

@media (min-width: 768px) {
.home-page .w-xl-100 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
}
.home-page .row.justify-content-lg-center {
  justify-content: flex-start !important;
}
.home-page .col-md-6 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}
}
@media (max-width: 767px) {
.home-page .col-md-6 {
  text-align: left !important;
  padding-left: 1rem !important;
}
}


@media (min-width: 768px) {
.home-page .col-md-4 {
  position: relative !important;
  padding-right: 0 !important;
}
.home-page .col-md-4 img {
  position: absolute !important;
  right: -100px !important;
  top: 50%;
  transform: translateY(-50%);
  max-width: 90% !important;
  height: auto !important;
  margin: 0 !important;
  display: block !important;
}
}


@media (min-width: 768px) {
.home-page .col-md-6 h1,
.home-page .col-md-6 .display-6,
.home-page .col-md-6 p.lead {
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
}
@media (max-width: 767px) {
.home-page .col-md-6 h1,
.home-page .col-md-6 .display-6,
.home-page .col-md-6 p.lead {
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
}

  
.footer-social-links{
  margin-top: 15px;
  margin-bottom: 20px;
}
.footer-social-links a{
  display:inline-block;
  margin-right:5px;
}
.footer-social-links img{
  width:45px;
  transition:transform .3s;
  filter:grayscale(0.3);
}
.footer-social-links a:hover img{
  transform:scale(1.1);
  filter:grayscale(0);
}
.numara-sikayet-box {
  background: linear-gradient(135deg, #0a2540 80%, #1565c0 100%);
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(10,37,64,0.15);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  padding: 0;
}
.numara-sikayet-content {
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.numara-sikayet-content h1 {
  color: #42a5f5;
  font-weight: bold;
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
}
.numara-sikayet-content p {
  color: #e3f2fd;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.numara-sikayet-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.numara-sikayet-form input[type="text"] {
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  width: 220px;
  background: #fff;
  color: #0a2540;
  outline: none;
  box-shadow: 0 2px 8px rgba(21,101,192,0.08);
  transition: box-shadow 0.2s;
}
.numara-sikayet-form input[type="text"]:focus {
  box-shadow: 0 4px 16px rgba(21,101,192,0.18);
}
.numara-sikayet-form button {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(21,101,192,0.08);
}
.numara-sikayet-form button:hover {
  background: #42a5f5;
  color: #0a2540;
}
.numara-sikayet-wave-top,
.numara-sikayet-wave-bottom {
  width: 100%;
  height: 50px;
  line-height: 0;
}
.numara-sikayet-wave-top svg,
.numara-sikayet-wave-bottom svg {
  display: block;
  width: 100%;
  height: 50px;
}
@media (max-width: 600px) {
  .numara-sikayet-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .numara-sikayet-form input[type="text"] {
    width: 100%;
    min-width: 0;
  }
}

    .footer-section {
      background: #0a2540;
      color: #fff;
      padding: 80px 0 40px;
    }

    .footer-heading {
      color: #42a5f5;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #e3f2fd;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: #42a5f5;
      padding-left: 5px;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: #42a5f5;
      transform: translateY(-3px);
    }

    .footer-social img {
      width: 20px;
      height: 20px;
      filter: brightness(0) invert(1);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      margin-top: 3rem;
    }

    .footer-contact {
      background: rgba(255,255,255,0.05);
      padding: 2rem;
      border-radius: 10px;
      margin-bottom: 2rem;
    }

    .footer-contact h3 {
      color: #42a5f5;
      margin-bottom: 1rem;
    }

    .footer-contact p {
      color: #e3f2fd;
      margin-bottom: 0;
    }

/* Modern, dinamik ve canlı tasarım için güncellenmiş stiller */
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #e3f0fa 0%, #f8fafc 100%);
}

.result-section {
  margin-top: 0px;
}

/* Kartlar */
.main-info-card, .info-card, .complaints-card, .card {
  border: none;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fafc 60%, #e3f0fa 100%);
  box-shadow: 0 8px 32px 0 rgba(25, 118, 210, 0.13), 0 2px 8px 0 rgba(25, 118, 210, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 2.2rem;
}

.main-info-card:hover, .info-card:hover, .complaints-card:hover {
  box-shadow: 0 16px 48px 0 rgba(25, 118, 210, 0.18), 0 4px 16px 0 rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.015);
}

/* Butonlar */
button, .btn {
  border-radius: 18px !important;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

button:hover, .btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Badge'ler */
.badge, .comment-meta .badge {
  background: linear-gradient(90deg, #42a5f5 0%, #1976d2 100%);
  color: #fff !important;
  border: none;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.38rem 0.9rem;
  box-shadow: 0 1px 4px rgba(25,118,210,0.08);
  margin-right: 0.2em;
  transition: background 0.3s, transform 0.2s;
}

.badge.bg-danger {
  background: linear-gradient(90deg, #ff5252 60%, #ff867f 100%) !important;
}

.badge.bg-warning {
  background: linear-gradient(90deg, #ffd600 60%, #ffb300 100%) !important;
  color: #fff !important;
}

.badge.bg-info {
  background: linear-gradient(90deg, #29b6f6 60%, #00e5ff 100%) !important;
  color: #fff !important;
}

.badge.bg-success {
  background: linear-gradient(90deg, #43d36c 60%, #1de9b6 100%) !important;
  color: #fff !important;
}

.badge:hover {
  filter: brightness(1.08);
  transform: scale(1.07);
}

/* Kart ve bölüm aralarına ferah boşluk */
.result-section, .bottom-comment-section, .comments-section {
  margin-bottom: 2.5rem;
}

/* Yazı renkleri ve kontrast */
.card, .main-info-card, .info-card, .complaints-card {
  color: #0a2540;
}

.card-header h2, .card-header .h5 {
  color: #1976d2;
  font-weight: 700;
}

/* Modern input ve form */
input, textarea, select {
  border-radius: 10px !important;
  border: 1.5px solid #e3e8f0 !important;
  font-size: 1.07rem;
  transition: border 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: #1976d2 !important;
  box-shadow: 0 0 0 2px #e3f2fd;
}

/* Responsive iyileştirme */
@media (max-width: 991.98px) {
  .main-info-card, .info-card, .complaints-card, .card {
    border-radius: 18px;
    margin-bottom: 1.2rem;
  }
}

.main-info-card > .card-body {
  background: rgba(255,255,255,0.92);
  margin: 0;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.04);
  padding: 2.5rem 2rem;
}

.main-info-card .row.align-items-center {
  gap: 0;
}

.main-info-card .info-card,
.main-info-card .complaints-card {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(25,118,210,0.07);
  border: none;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.main-info-card .info-card:hover,
.main-info-card .complaints-card:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.01);
}

.main-info-card .card-header {
  background: transparent;
  border-bottom: none;
  padding: 0 0 0.7rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-info-card .card-header h2, .main-info-card .card-header .h5 {
  background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
  color: #fff;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.18rem;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  margin-bottom: 0;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-info-card .info-item {
  background: none;
  border: none;
  padding: 0.25rem 0;
  border-radius: 0;
}

.main-info-card .info-item label {
  font-size: 0.97rem;
  color: #7b8ca6;
  margin-bottom: 0.1rem;
}

.main-info-card .info-item .fw-bold {
  font-size: 1.09rem;
  color: #0a2540;
}

.main-info-card .view-counter {
  background: none;
  border: none;
  padding: 0.25rem 0;
}

.main-info-card .timeline {
  margin-top: 0.5rem;
}

.main-info-card .timeline-item {
  background: none;
  border: none;
  padding: 0.5rem 0;
  border-radius: 0;
  margin-bottom: 0.5rem;
}

.main-info-card .timeline-marker {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #e3e8f0;
}

.main-info-card .badge {
  background: linear-gradient(90deg, #42a5f5 0%, #1976d2 100%);
  color: #fff;
  border: none;
  font-size: 0.97rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.38rem 0.9rem;
  box-shadow: 0 1px 4px rgba(25,118,210,0.08);
  margin-right: 0.2em;
}

.main-info-card .badge.bg-danger {
  background: linear-gradient(90deg, #ff5252 60%, #ff867f 100%) !important;
  color: #fff !important;
}

.main-info-card .badge.bg-warning {
  background: linear-gradient(90deg, #ffd600 60%, #ffb300 100%) !important;
  color: #fff !important;
}

.phone-info-container {
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.09);
  padding: 1.5rem;
  margin-bottom: 0.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.phone-info-container:hover {
  box-shadow: 0 8px 32px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.01);
}

.phone-info-container div[style*="background: linear-gradient"] {
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%) !important;
}

/* İstatistik kutuları için modern görünüm */
.phone-info-container [style*="grid-template-columns"] > div {
  background: linear-gradient(90deg, #fff 60%, #e3f2fd 100%);
  box-shadow: 0 1px 4px rgba(25,118,210,0.07);
  border-radius: 14px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1976d2;
  transition: box-shadow 0.2s, transform 0.2s;
}

.phone-info-container [style*="grid-template-columns"] > div:hover {
  box-shadow: 0 4px 16px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Butonlar için modern ve animasyonlu stil */
.phone-info-container button {
  background: linear-gradient(90deg, #ff5252 60%, #ff867f 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(255,82,82,0.10);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.phone-info-container button:last-child {
  background: linear-gradient(90deg, #43d36c 60%, #1de9b6 100%);
  box-shadow: 0 2px 8px rgba(67,211,108,0.10);
}

.phone-info-container button:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(25,118,210,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Modern yazı ve spacing */
.main-info-card, .main-info-card * {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.01em;
}

.main-info-card .info-item label, .main-info-card .info-item .fw-bold {
  font-size: 1.01rem;
}

/* Responsive düzenlemeler */
@media (min-width: 992px) {
  .main-info-card .col-lg-6 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .main-info-card > .card-body {
    padding: 1.2rem 0.7rem;
  }
  .main-info-card .info-card,
  .main-info-card .complaints-card {
    margin-bottom: 1rem;
    padding: 0.7rem;
  }
  .phone-info-container {
    padding: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .main-info-card {
    padding: 0.2rem;
  }
  .main-info-card > .card-body {
    padding: 0.7rem 0.2rem;
  }
  .main-info-card .info-card,
  .main-info-card .complaints-card {
    margin-bottom: 0.5rem;
  }
}

/* Yorumlar bölümü */
.comments-section {
  background: #fff;
}

.comments-section .card {
  border: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  border-radius: 15px;
  background: rgba(255,255,255,0.98);
}

.comments-section .card-header {
  background: transparent;
  border-bottom: 1px solid #e3e8f0;
  padding: 1.25rem;
}

.comments-section .card-header h2 {
  color: #1a237e;
  font-weight: 600;
}

.comments-section .avatar-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a237e, #0d47a1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(25,118,210,0.15);
}

.comments-section .badge {
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  font-size: 0.92rem;
  border-radius: 7px;
  border: 1px solid #e3e8f0;
}

.comments-section .comment-item, 
.comments-section .d-flex.mb-4.align-items-start {
  padding: 1rem 0;
  border-radius: 12px;
  background: transparent;
  border: none;
  margin-bottom: 1rem;
}

.comments-section .comment-reply, 
.comments-section .d-flex.mt-3.ms-4.align-items-start {
  background: rgba(255,255,255,0.95);
  border-left: 3px solid #1a237e;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  margin-left: 2rem;
}

.comments-section .btn-link {
  color: #546e7a;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.comments-section .btn-link:hover {
  color: #1a237e;
}

@media (max-width: 991.98px) {
  .comments-section .comment-reply, 
  .comments-section .d-flex.mt-3.ms-4.align-items-start {
    margin-left: 1rem;
  }
}

@media (max-width: 767.98px) {
  .comments-section .comment-item, 
  .comments-section .d-flex.mb-4.align-items-start {
    padding: 0.75rem 0;
  }
}

/* Yıldız derecelendirme sistemi */
.comment-stars .star {
  font-size: 1.1em;
  color: #e0e0e0;
  display: inline-block;
  transition: color 0.2s;
}

.comment-stars .star.filled {
  color: #ffc107;
}

.comment-meta .badge {
  font-weight: 500;
  padding: 0.32rem 0.7rem;
  font-size: 0.92em;
  border-radius: 7px;
  margin-right: 0.2em;
  margin-bottom: 0.1em;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2em 0.7em;
}

/* Yıldızlı puanlama inputu */
.star-rating-input {
  direction: rtl;
  display: inline-flex;
  font-size: 1.6rem;
  gap: 0.1em;
}

.star-rating-input input[type="radio"] {
  display: none;
}

.star-rating-input label {
  color: #e0e0e0;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating-input input[type="radio"]:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: #ffc107;
}

.star-rating-display .star {
  font-size: 1.2em;
  color: #e0e0e0;
  display: inline-block;
  transition: color 0.2s;
}

.star-rating-display .star.filled {
  color: #ffc107;
}

.star-rating-display .star.half {
  color: #ffc107;
  position: relative;
}

.star-rating-display .star.half:after {
  content: '★';
  color: #e0e0e0;
  position: absolute;
  left: 50%;
  width: 50%;
  overflow: hidden;
}

/* Stepper form düzeni */
#multiStepCommentForm .d-flex.justify-content-end,
#multiStepCommentForm .d-flex.justify-content-between {
  margin-top: 1.2rem;
  gap: 0.5rem;
  justify-content: center !important;
}

#multiStepCommentForm .btn {
  min-width: 100px;
  font-weight: 500;
}

#multiStepCommentForm .btn + .btn {
  margin-left: 0.5rem;
}

@media (max-width: 767.98px) {
  #multiStepCommentForm .btn {
    min-width: 90px;
    font-size: 0.98em;
  }
}

/* Operatör bilgisi */
.operator-info {
  display: inline-flex;
  align-items: center;
  background: #f3f7ff;
  border-radius: 8px;
  padding: 2px 10px 2px 4px;
  font-weight: 700;
  font-size: 1.08rem;
  color: #1976d2;
  gap: 7px;
}

.operator-info img {
  height: 22px;
  width: auto;
  display: block;
  margin: 0;
}

/* Numara bilgi başlığı */
.number-info-header {
  max-width: 700px;
  margin: 32px 0 0 0;
  background: linear-gradient(90deg, #e3e6fd 60%, #f8fafc 100%);
  border-radius: 28px;
  box-shadow: 0 4px 24px 0 rgba(25, 118, 210, 0.08), 0 1px 4px 0 rgba(25, 118, 210, 0.04);
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  text-align: left;
  position: relative;
}

@media (max-width: 991.98px) {
  .number-info-header {
    max-width: 100%;
    padding: 1.2rem 1rem 1rem 1rem;
    margin-top: 72px;
  }
}

/* Animasyonlu alt çizgi */
.animated-underline {
  display: block;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%);
  border-radius: 3px;
  margin-top: 8px;
  position: absolute;
  left: 0;
  bottom: -10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Animasyonlu açılma efekti */
.animated-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.animated-fadein.show {
  opacity: 1;
  transform: none;
}

.no-js .animated-fadein { 
  opacity: 1 !important; 
  transform: none !important; 
}

/* Yorum filtreleme çubuğu */
.comment-filter-bar {
  overflow-x: auto;
  padding-bottom: 4px;
}

.comment-filter-bar .btn {
  min-width: 100px;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .comment-filter-bar {
    flex-wrap: nowrap !important;
  }
}

/* Modern Yorum Kartı ve Profil */
.comments-list .d-flex.mb-4.align-items-start {
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.07);
  padding: 1.2rem 1rem 1.2rem 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start !important;
}

.comments-list .avatar-circle {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  background: linear-gradient(135deg,#1a237e,#1976d2);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(25,118,210,0.13);
  margin-top: 2px;
}

.comments-list .flex-grow-1 {
  margin-left: 0.7rem;
}

.comments-list .d-flex.justify-content-between.align-items-center.mb-1 {
  margin-bottom: 0.2rem !important;
}

.comments-list strong {
  font-weight: 700;
  color: #0a2540;
  font-size: 1.08rem;
}

.comments-list small.text-muted {
  font-size: 0.97em;
  color: #7b8ca6 !important;
  font-weight: 500;
}

.comments-list .mb-2 {
  font-size: 1.07rem;
  color: #222b45;
  margin-bottom: 0.7rem !important;
}

/* Yorum yıldızları */
.comment-stars {
  display: inline-block;
  font-size: 1.15em;
  margin-right: 0.3em;
  vertical-align: middle;
}

.comment-stars .star {
  color: #e0e0e0;
  transition: color 0.2s;
}

.comment-stars .star.filled {
  color: #ffc107;
}

/* Yorum meta bilgileri */
.comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2em 0.7em;
  margin-bottom: 0.5em;
}

.comment-meta .badge {
  border-radius: 8px;
  font-size: 0.98em;
  font-weight: 600;
  padding: 0.32rem 0.9rem;
  box-shadow: 0 1px 4px rgba(25,118,210,0.08);
  margin-bottom: 0.1em;
  margin-right: 0.2em;
  background: linear-gradient(90deg, #42a5f5 0%, #1976d2 100%);
  color: #fff !important;
  border: none;
  transition: background 0.3s, transform 0.2s;
}

.comment-meta .badge.bg-warning {
  background: linear-gradient(90deg, #ffd600 60%, #ffb300 100%) !important;
  color: #fff !important;
}

.comment-meta .badge.bg-info {
  background: linear-gradient(90deg, #29b6f6 60%, #00e5ff 100%) !important;
  color: #fff !important;
}

.comment-meta .badge.bg-primary {
  background: linear-gradient(90deg, #1976d2 60%, #42a5f5 100%) !important;
  color: #fff !important;
}

.comment-meta .badge.bg-danger {
  background: linear-gradient(90deg, #ff5252 60%, #ff867f 100%) !important;
  color: #fff !important;
}

.comment-meta .badge.bg-success {
  background: linear-gradient(90deg, #43d36c 60%, #1de9b6 100%) !important;
  color: #fff !important;
}

.comment-meta .badge:hover {
  filter: brightness(1.08);
  transform: scale(1.07);
}

.comments-list .comment-meta .ms-2.text-muted {
  font-size: 0.97em;
  color: #7b8ca6 !important;
  font-weight: 500;
}

/* Yorum butonları */
.comments-list .btn-link {
  display: inline-block;
  width: 48%;
  min-width: 120px;
  background: #f4f8fd;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(25,118,210,0.07);
  color: #1976d2;
  font-weight: 600;
  font-size: 1.04em;
  text-align: center;
  margin: 0.2em 1% 0.2em 0;
  padding: 0.5em 0.2em;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.comments-list .btn-link:hover {
  background: #e3f2fd;
  color: #0a2540;
  box-shadow: 0 2px 12px rgba(25,118,210,0.13);
}

@media (max-width: 575.98px) {
  .comments-list .d-flex.mb-4.align-items-start {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
  .comments-list .avatar-circle {
    margin-bottom: 0.7rem;
    margin-left: 0;
  }
  .comments-list .flex-grow-1 {
    margin-left: 0;
  }
  .comments-list .btn-link {
    width: 100%;
    margin: 0.2em 0 0.2em 0;
  }
}

/* Animasyonlu ışıltılı border efektli ana kart */
.main-info-card {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.main-info-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -3px; 
  left: -3px; 
  right: -3px; 
  bottom: -3px;
  border-radius: 32px;
  padding: 0;
  background: linear-gradient(120deg, #1a237e, #1976d2, #42a5f5, #1976d2, #1a237e 90%);
  background-size: 300% 300%;
  animation: borderShine 3.5s linear infinite;
  box-shadow: 0 0 24px 0 rgba(25,118,210,0.10);
}

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

.main-info-card > .card-body {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
}

#comment-error-message:empty,
#comment-error-message.d-none {
  display: none !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
}

#comment-error-message.d-none,
#comment-error-message:empty,
#comment-error-message .error-text:empty {
  display: none !important;
  border: none !important;
  background: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#comment-error-message.alert-success {
  border: 1.5px solid #43d36c !important;
  background: #f6fff6 !important;
  color: #218838 !important;
}
#comment-error-message.alert-danger {
  border: 1.5px solid #ff5252 !important;
  background: #fff6f6 !important;
  color: #c62828 !important;
}
#comment-error-message {
  font-weight: 500 !important;
  margin-bottom: 1rem !important;
  min-height: 0 !important;
  font-size: 1.04em !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 2px 8px #0001 !important;
  border-radius: 10px !important;
  padding: 0.7em 1.2em !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.7em !important;
}
#comment-error-message .error-text {
  font-weight: 500 !important;
  font-size: 1em !important;
  color: inherit !important;
}
#comment-error-message .bi {
  font-size: 1.3em !important;
  color: #ff5252 !important;
  margin-right: 0.3em !important;
}

/* --- MOBILE MENU MINIMAL & CLEAN --- */
@media (max-width: 991.98px) {
  #header,
  .navbar-collapse,
  .navbar-absolute-top-scroller {
    background: linear-gradient(135deg, #0d253d 0%, #195392 100%) !important;
    box-shadow: none !important;
    border: none !important;
  }
  .navbar-brand {
    display: block;
    padding: 1.2rem 0 0.5rem 0;
    margin: 0;
    width: auto;
    max-width: 80vw;
  }
  .navbar-brand img {
    margin: 0;
    margin-left: 0;
    display: block;
    max-height: 40px;
    height: auto;
    width: auto;
  }
  .navbar-nav {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    align-items: flex-start !important;
  }
  .navbar-nav .nav-item {
    width: 100%;
    text-align: left;
    margin: 0 !important;
    border-bottom: 1px solid #2366b1;
  }
  .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 1.1rem 1.5rem !important;
    background: none !important;
    border-radius: 0 !important;
    font-size: 1.08rem;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.7em;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background: #195392 !important;
    color: #e3f2fd !important;
  }
  .navbar-nav .dropdown-menu {
    background: #1856a7 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    margin: 0.5rem 1.2rem !important;
    padding: 0.5rem 0 !important;
    min-width: 80%;
    text-align: left;
  }
  .navbar-nav .dropdown-item {
    color: #fff !important;
    font-size: 1rem;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px !important;
    background: none !important;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.7em;
  }
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background: #1565c0 !important;
    color: #e3f2fd !important;
  }
  .navbar-toggler {
    color: #fff !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    margin-top: 0.7rem;
  }
}

/* Katlanabilir telefonlar için özel düzenlemeler */
@supports (padding: max(0px)) {
  .hero-section {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  
  .container-fluid {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

/* Katlanabilir telefonlar için özel medya sorguları */
@media screen and (min-width: 280px) and (max-width: 540px) {
  .hero-section {
    padding-top: max(2rem, env(safe-area-inset-top));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
  
  .hero-search-form-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-content p.lead {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

/* Galaxy Z Fold gibi katlanabilir telefonlar için özel düzenlemeler */
@media screen and (min-width: 280px) and (max-width: 717px) and (orientation: portrait) {
  .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  
  .hero-search-form-box {
    width: 100%;
    max-width: 100%;
  }
}

/* Breadcrumb Styles */
.custom-breadcrumb {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 2px 16px rgba(16,66,119,0.06);
    padding: 1.1rem 2rem;
    margin-top: 120px; /* Header'ın yüksekliğine göre ayarlandı */
    margin-bottom: 2rem;
    border: none;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.custom-breadcrumb .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #145eb0;
    font-weight: bold;
    margin: 0 0.5rem;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #145eb0;
    text-decoration: none;
    transition: color 0.2s;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #0a2540;
    text-decoration: underline;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .custom-breadcrumb {
        margin-top: 100px; /* Mobil görünümde daha az margin */
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
  .comment-filter-bar {
    flex-direction: column !important;
    gap: 0.5rem;
  }
  
  .comment-filter-bar .btn {
    width: 100%;
    min-width: auto;
  }
}