:root {
    /* Color Variables */
    --primary-color: #2F80ED;
    --primary-hover: #2563eb;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --disabled-bg: #f2f2f2;
    --disabled-text: #ccc;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --dark-bg: #212529;
    --navbar-bg: #310070;
    --form-border: #e5e5e5;
    --form-label: #b0b0b0;
    --form-divider: #e5e5e5;
    --button-blue: #4A90E2;
    --button-blue-faded: #b3cdf6;
}

/* General Styles */
body {
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.hero-section h1 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section .lead {
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Features Section */
.features .card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px var(--shadow-color);
}

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

.features .card-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.features .card-text {
    color: var(--text-light);
    font-weight: 400;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact .form-control {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.contact .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact .btn-primary {
    padding: 12px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-section img {
        margin-top: 30px;
    }

    .features .card {
        margin-bottom: 20px;
    }

    .contact form {
        padding: 0 15px;
    }
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--button-blue);
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--white);
}

/* Navigation Customization */
.navbar {
    box-shadow: 0 2px 10px var(--shadow-color);
    background-color: var(--navbar-bg) !important;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
    color: var(--white) !important;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Sign Up Button Styles */
.signup-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 8px;
    padding: 8px 20px !important;
    transition: all 0.3s ease !important;
}

.signup-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--white) !important;
}

@media (max-width: 991.98px) {
    .signup-btn {
        margin-top: 10px;
        text-align: center;
        display: inline-block;
    }
}

/* Simple Slider Section */
.simple-slider {
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.simple-slider .carousel {
    height: 150px;
}

.simple-slider .carousel-inner {
    height: 100%;
}

.simple-slider .carousel-item {
    height: 100%;
}

.simple-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
}

.simple-slider .slider-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.simple-slider .carousel-control-prev,
.simple-slider .carousel-control-next {
    width: 5%;
    opacity: 0.5;
}

.simple-slider .carousel-control-prev:hover,
.simple-slider .carousel-control-next:hover {
    opacity: 0.8;
}

/* Hero Section Form Container */
.form-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 14px var(--shadow-color);
    border: 1px solid var(--form-border);
    width: 100%;
    max-width: 400px;
    padding: 0;
    overflow: hidden;
}

.form-group {
    padding: 16px 20px 8px 20px;
    border-bottom: 1px solid var(--form-divider);
    margin-bottom: 0;
    position: relative;
}
.form-group:last-of-type {
    border-bottom: none;
}

.form-label {
    font-size: 13px;
    color: var(--form-label);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: block;
}

.select2-container--default .select2-selection--single {
    border: none;
    border-radius: 0;
    height: 32px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.select2-selection__rendered {
    line-height: 32px !important;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    padding-left: 0;
}

.select2-selection__arrow {
    top: 3px !important;
    right: 0 !important;
}

.select2-container {
    width: 100% !important;
}

.select2-selection__placeholder {
    color: var(--form-label) !important;
    font-weight: 400;
}

/* Remove default select2 border/focus */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:active {
    outline: none;
    box-shadow: none;
}

/* Button styling */
.submit-button {
    width: 100%;
    padding: 16px 0 14px 0;
    background: var(--button-blue);
    color: var(--white);
    font-weight: bold;
    font-size: 17px;
    border: none;
    border-radius: 0 0 16px 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.submit-button span {
    font-weight: 700;
    color: var(--white);
}
.submit-button .alt {
    font-weight: 500;
    color: var(--button-blue-faded);
    font-size: 16px;
}
.submit-button:hover {
    background: var(--primary-hover);
}

/* Remove select background when disabled */
select:disabled + .select2-container--default .select2-selection--single {
    background: var(--white);
    color: var(--disabled-text);
}

@media (max-width: 991.98px) {
    .form-container {
        max-width: 100%;
    }
}

.form-toggle-group {
    display: flex;
    background: var(--white);
    border: 1px solid var(--form-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 18px;
}
.toggle-btn {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--form-label);
    padding: 14px 32px 12px 32px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    min-width: 160px;
}
.toggle-btn svg {
    min-width: 20px;
    min-height: 20px;
    margin-right: 6px;
}
.toggle-btn.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(74,144,226,0.07);
    z-index: 1;
}
.toggle-btn.active svg path,
.toggle-btn.active svg circle {
    stroke: var(--primary-color);
}
.toggle-btn:not(.active) svg path,
.toggle-btn:not(.active) svg rect,
.toggle-btn:not(.active) svg circle {
    stroke: var(--form-label);
}
.toggle-btn:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.toggle-btn:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
.toggle-btn:not(.active):hover {
    background: #f5f7fa;
}

@media (max-width: 991.98px) {
    .form-toggle-group {
        width: 100%;
    }
}

.form-container .form-group.d-flex.p-0 {
    display: flex;
    padding: 0 !important;
    border-bottom: 1px solid var(--form-divider);
    margin-bottom: 0;
    background: var(--white);
}
.price-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    position: relative;
}
.price-field .price-input {
    padding-left: 22px;
}
.price-field .price-input {
    position: relative;
    z-index: 1;
}
.price-field::before {
    content: '₺';
    position: absolute;
    left: 20px;
    top: 38px;
    font-size: 18px;
    color: var(--form-label);
    font-weight: 600;
    pointer-events: none;
    z-index: 2;
}
.price-field .form-label {
    font-size: 13px;
    color: var(--form-label);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: block;
}
.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
}
@media (max-width: 450px) {
    .form-container .form-group.d-flex.p-0 {
        flex-direction: column;
    }
    .price-field {
        width: 100%;
        border-right: none !important;
        padding: 16px 20px 8px 20px !important;
    }
    .price-field::before {
        left: 20px;
        top: 38px;
    }
}

.price-input {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    line-height: 1.2;
    margin-bottom: 2px;
    padding: 0;
    appearance: textfield;
}
.price-input::placeholder {
    color: var(--form-label);
    font-weight: 400;
    opacity: 1;
}
/* Remove number input spinners for Chrome, Safari, Edge */
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Remove number input spinners for Firefox */
.price-input[type=number] {
    -moz-appearance: textfield;
}

/* Brand Slider Section */
.brand-slider {
    overflow: hidden;
    padding: 20px 0;
    background: white;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.brand-slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(250px * 14); /* Adjust based on number of images */
}

.brand-slider-track img {
    height: 125px;
    margin: 0 30px;
    transition: opacity 0.3s ease;
    width: auto;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7)); /* Half of the total width */
    }
}

.custom-navbar {
  display: flex;
  width: 100%;
  height: 70px;
  box-shadow: 0 2px 10px var(--shadow-color);
  align-items: stretch;
  background: linear-gradient(90deg, #233389 0%, #0076c6 60%, #1cb5e0 100%);
}

.navbar-logo-section {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-width: 140px;
  border-right: 1px solid #e5e5e5;
}

.navbar-logo {
  height: 44px;
  width: auto;
}

.navbar-menu-section {
  flex: 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-menu li a {
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  display: block;
}

.navbar-menu li a:hover,
.navbar-menu li .signup-btn:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
}

.signup-btn {
  background: #fff;
  color: #0076c6 !important;
  font-weight: 700;
  border-radius: 6px;
  padding: 8px 18px !important;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
}

.signup-btn:hover {
  background: #1cb5e0;
  color: #fff !important;
}

@media (max-width: 900px) {
  .custom-navbar {
    flex-direction: row;
    height: 56px;
    align-items: stretch;
    position: relative;
    padding: 0;
    border-bottom: none;
  }
  .container.d-flex.align-items-stretch.p-0 {
    flex-direction: row !important;
    align-items: stretch !important;
    height: 56px !important;
    padding: 0 !important;
    width: 100vw;
    max-width: 100vw;
    justify-content: flex-start;
  }
  .navbar-logo-section {
    background: #fff;
    width: 160px;
    min-width: 120px;
    max-width: 180px;
    border-right: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 12px;
    height: 100%;
    z-index: 2;
  }
  .navbar-burger {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    height: 100%;
    margin-left: auto;
    margin-right: 0;
    padding-right: 16px;
    border-radius: 0;
    z-index: 2;
    width: auto;
  }
  .navbar-menu-section {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100vw;
    background: linear-gradient(90deg, #233389 0%, #0076c6 60%, #1cb5e0 100%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: max-height 0.3s cubic-bezier(.4,2,.6,1), opacity 0.3s;
    max-height: 500px;
    opacity: 1;
    z-index: 10;
    margin: 0;
    border: none;
  }
  .navbar-menu-section.mobile-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
  /* Remove any border or margin at the top of the menu */
  .navbar-menu-section,
  .navbar-menu-section ul {
    margin-top: 0 !important;
    border-top: none !important;
    padding-top: 0 !important;
  }
  .navbar-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: center;
  }
  .navbar-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .navbar-menu li:last-child {
    border-bottom: none;
  }
  .navbar-menu li a, .signup-btn {
    width: 100%;
    border-radius: 0;
    padding: 12px 0 !important;
    margin: 0;
  }
}

/* Remove old navbar styles if present */
.navbar, .navbar-brand, .nav-link, .navbar-nav, .navbar-toggler, .navbar-collapse, .bg-dark {
  all: unset;
  display: revert;
}

.hero-image-wrapper {
  width: 600px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .hero-image-wrapper {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    overflow: visible;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
  }
  
  .hero-section {
    padding: 25px 0;
  }
  
  .hero-section .container {
    padding-top: 5px !important;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .hero-section .lead {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .hero-section .btn-lg {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  /* Form optimizasyonları */
  .form-container {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .form-group {
    padding: 8px 12px 4px 12px;
  }
  
  .form-label {
    font-size: 11px;
    margin-bottom: 1px;
  }
  
  .select2-container--default .select2-selection--single {
    height: 24px;
  }
  
  .select2-selection__rendered {
    line-height: 24px !important;
    font-size: 14px;
  }
  
  .submit-button {
    padding: 10px 0 8px 0;
    font-size: 14px;
    border-radius: 0 0 10px 10px;
  }
  
  .toggle-btn {
    padding: 8px 16px 6px 16px;
    font-size: 13px;
    min-width: 100px;
  }
  
  .form-toggle-group {
    margin-bottom: 8px;
  }
  
  /* Brand slider optimizasyonları */
  .brand-slider {
    padding: 10px 0;
    margin-top: 3px;
    margin-bottom: 3px;
  }
  
  .brand-slider-track img {
    height: 60px;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-image-wrapper {
    height: 80px;
    margin-bottom: 8px;
    overflow: visible;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
  }
  
  .hero-section {
    padding: 20px 0;
  }
  
  .hero-section h1 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  
  .hero-section .lead {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .hero-section .btn-lg {
    padding: 6px 12px;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .form-group {
    padding: 6px 10px 3px 10px;
  }
  
  .form-label {
    font-size: 10px;
  }
  
  .select2-container--default .select2-selection--single {
    height: 22px;
  }
  
  .select2-selection__rendered {
    line-height: 22px !important;
    font-size: 13px;
  }
  
  .submit-button {
    padding: 8px 0 6px 0;
    font-size: 13px;
  }
  
  .toggle-btn {
    padding: 6px 12px 4px 12px;
    font-size: 12px;
    min-width: 90px;
  }
  
  .brand-slider-track img {
    height: 50px;
    margin: 0 12px;
  }
}

.register-main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fa;
}

.register-card {
  width: 100%;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 32px 24px 24px 24px;
}

.register-card label {
  font-size: 13px;
  color: #b0b0b0;
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0.01em;
}

.register-card .form-control, .register-card .form-select {
  border: none;
  border-radius: 10px;
  background: #f7f8fa;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  box-shadow: none;
  padding: 14px 16px;
}

.register-card .form-control:focus, .register-card .form-select:focus {
  background: #f0f2f7;
  outline: none;
  box-shadow: 0 0 0 2px #4A90E2;
}

.register-card .input-group-text {
  background: transparent;
  border: none;
  cursor: pointer;
}

.register-card .input-group {
  margin-bottom: 12px;
}

.dob-group {
  display: flex;
  gap: 8px;
}

.dob-group .form-select {
  flex: 1;
  min-width: 0;
}

.form-note {
  color: #b0b0b0;
  font-size: 13px;
  margin-bottom: 8px;
}

.submit-btn {
  width: 100%;
  padding: 14px 0;
  background: var(--button-blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s;
}

.submit-btn:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* Hamburger menu styles */
.navbar-burger {
  position: relative;
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 20;
}
.navbar-burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #233389;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar-burger span:nth-child(1) {
  top: 14px;
}
.navbar-burger span:nth-child(2) {
  top: 21px;
}
.navbar-burger span:nth-child(3) {
  top: 28px;
}
.navbar-burger.active span {
  background: #fff !important;
}
.navbar-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-burger.active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .navbar-burger {
    display: flex;
  }
  .navbar-menu-section {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: linear-gradient(90deg, #233389 0%, #0076c6 60%, #1cb5e0 100%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: max-height 0.3s cubic-bezier(.4,2,.6,1), opacity 0.3s;
    max-height: 500px;
    opacity: 1;
    z-index: 10;
  }
  .navbar-menu-section.mobile-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
}

/* Styles for Get Offer Form within register-card */
.register-card .col-md-8 .form-group {
    padding: 16px 20px 8px 20px;
    border-bottom: 1px solid var(--form-divider);
    margin-bottom: 0;
}

.register-card .col-md-8 .form-group:last-of-type {
    border-bottom: none;
}

.register-card .col-md-8 .form-label {
    font-size: 13px;
    color: var(--form-label);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    display: block;
}

.register-card .col-md-8 .form-control,
.register-card .col-md-8 .form-select {
    border: none;
    background: transparent;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0;
    line-height: 1.2;
}

.register-card .col-md-8 .form-select {
     padding: 0 !important; /* Ensure padding is zero for select */
}

.register-card .col-md-8 .info-icon {
    color: var(--form-label);
    font-size: 1rem;
}

/* My Offers Page Styles */
.page-title {
    color: var(--text-dark);
    font-weight: 700;
}

.btn-toggle {
    background-color: var(--light-gray);
    color: var(--text-light);
    font-weight: 500;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-toggle.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.request-card.card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.request-card .card-body {
    padding: 20px;
}

.request-card .card-brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.request-card .card-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.request-card .card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.request-card .card-date {
    font-size: 0.8rem;
}

.request-card hr {
    margin: 16px 0;
    border-top: 1px solid var(--border-color);
}

.request-card .card-status {
    color: var(--info-color); /* Assuming --info-color for 'Henüz teklif verilmedi' */
    font-weight: 500;
}

.request-card .card-action-link {
    color: var(--danger-color); /* Assuming --danger-color for the action link */
    font-weight: 500;
    text-decoration: none;
}

.request-card .card-action-link i {
    margin-right: 4px;
}

/* Purchase Rights Modal Styles */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.pricing-option {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-option h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-option .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-option .btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-options {
        grid-template-columns: 1fr;
    }
} 

.form-control.custom-textarea {
    width: 100% !important;
    min-height: 100px !important;
    border: 2px solid #4A90E2 !important;
    border-radius: 8px !important;
    padding: 16px !important;
    font-size: 1rem !important;
    background: #f8faff !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 2px 8px rgba(74,144,226,0.05) !important;
    resize: vertical !important;
    color: #222 !important;
}
.form-control.custom-textarea:focus {
    border-color: #2563eb !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: 0 0 0 2px #b3d4fc !important;
}

/* About us */
.about-section {
    background: #f8faff;
    padding: 48px 0 32px 0;
}
.about-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
    border: 1.5px solid #e5e7eb;
    margin-bottom: 32px;
    padding: 32px 36px 24px 36px;
    transition: box-shadow 0.2s;
}
.about-card:hover {
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.13);
}
.about-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.about-content {
    font-size: 1.08rem;
    color: #222;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .about-card { padding: 18px 10px 14px 10px; }
}
/* About us ends */

/* Navbar profil ikonu özel stil ve hover */
.navbar .profile-icon {
    padding: 0 10px !important;
    display: flex;
    align-items: center;
    height: 100%;
}
.navbar .profile-icon {
    color: #fff;
    background: transparent;
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.2s;
    box-shadow: none;
    padding: 2px;
}
.custom-navbar .profile-icon,
.navbar .profile-icon {
    cursor: pointer !important;
}

.custom-navbar .profile-icon:hover,
.navbar .profile-icon:hover {
    cursor: pointer !important;
    color: #8bbeff !important;
    box-shadow: 0 2px 8px rgba(47,128,237,0.15);
    transform: scale(1.12);
}

/* Kullanıcı adı stili */
.custom-navbar .user-name,
.navbar .user-name {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .navbar .user-name {
        display: none;
    }
}

/* Notification Dot */
.notification-dot {
    position: absolute;
    top: -4px;
    right: -8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Equipment Level Slider */


.equipment-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #e9ecef 0%, #e9ecef 33%, #dee2e6 33%, #dee2e6 66%, #ced4da 66%, #ced4da 100%);
    outline: none;
    margin: 10px 0;
}

.equipment-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A90E2, #2563eb);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.equipment-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.equipment-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A90E2, #2563eb);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.equipment-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.equipment-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.equipment-label {
    text-align: center;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.equipment-label:nth-child(2) {
    flex: 0.5;
}

.equipment-label:hover {
    color: var(--primary-color);
}

.equipment-label.active {
    color: var(--primary-color);
    font-weight: 600;
}

.equipment-value {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.equipment-arrow {
    position: absolute;
    top: -20px;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.equipment-arrow.left {
    left: 10%;
    transform: translateX(-50%);
}

.equipment-arrow.right {
    right: 10%;
    transform: translateX(50%);
}

.equipment-slider-container .form-label {
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
