/* ######################## BRANDS ########################### */
.section-pt-110 {
  padding-top: 110px;
}

.section-pb-140 {
  padding-bottom: 140px;
}

/* Section Header */
.reference-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.reference-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1a2332 0%, #2a4365 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reference-description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Reference Card */
.reference-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 40px 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.reference-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff6b35 0%, #1a2332 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.reference-card:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.reference-card:hover::before {
  opacity: 0.95;
}

.reference-overlay {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2332 0%, #2a4365 100%);
  transition: top 0.4s ease;
  z-index: 1;
}

.reference-card:hover .reference-overlay {
  top: 0;
}

.reference-content {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.reference-logo {
  width: 320px;
  height: 120px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.reference-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.reference-card:hover .reference-logo {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.reference-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
  transition: all 0.4s ease;
}

.reference-card:hover .reference-name {
  color: #fff;
}

.reference-category {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.reference-card:hover .reference-category {
  color: #ff8c42;
}

.reference-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: #f1f5f9;
  z-index: 1;
  transition: all 0.4s ease;
  line-height: 1;
}

.reference-card:hover .reference-number {
  color: rgba(255, 255, 255, 0.1);
  font-size: 64px;
}

/* View All Button */
.reference-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.reference-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2332 0%, #2a4365 100%);
  transition: left 0.4s ease;
  z-index: 0;
}

.reference-btn:hover::before {
  left: 0;
}

.reference-btn span,
.reference-btn svg {
  position: relative;
  z-index: 1;
}

.reference-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.reference-btn svg {
  transition: transform 0.4s ease;
}

.reference-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .reference-title {
    font-size: 42px;
  }

  .reference-card {
    min-height: 260px;
    padding: 35px 25px;
  }
}

@media (max-width: 991px) {
  .section-pt-110 {
    padding-top: 80px;
  }

  .section-pb-140 {
    padding-bottom: 100px;
  }

  .reference-title {
    font-size: 36px;
  }

  .reference-description {
    font-size: 16px;
  }

  .reference-card {
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .section-pt-110 {
    padding-top: 60px;
  }

  .section-pb-140 {
    padding-bottom: 80px;
  }

  .reference-title {
    font-size: 32px;
  }

  .reference-badge {
    font-size: 12px;
    padding: 6px 20px;
  }

  .reference-card {
    min-height: 220px;
    padding: 30px 20px;
  }

  .reference-logo {
    width: 100px;
    height: 100px;
  }

  .reference-name {
    font-size: 18px;
  }

  .reference-category {
    font-size: 13px;
  }

  .reference-number {
    font-size: 36px;
    top: 15px;
    right: 15px;
  }

  .reference-card:hover .reference-number {
    font-size: 48px;
  }

  .reference-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 35px;
  }
}

@media (max-width: 575px) {
  .reference-title {
    font-size: 28px;
  }

  .reference-description {
    font-size: 15px;
  }

  .reference-card {
    min-height: 200px;
  }

  .reference-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }
}

/* Animation */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos='fade-up'] {
  transform: translateY(30px);
}

[data-aos='fade-up'].aos-animate {
  transform: translateY(0);
}

/* ######################## BREADCRUMB ########################### */
.breadcrumb__area {
  position: relative;
  padding: 100px 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.breadcrumb__area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.95) 0%,
    rgba(42, 67, 101, 0.9) 100%
  );
  z-index: 1;
}

.breadcrumb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 140, 66, 0.1) 0%,
      transparent 50%
    );
  z-index: 2;
}

.breadcrumb__area .container {
  position: relative;
  z-index: 3;
}

/* Breadcrumb Content */
.breadcrumb__content {
  text-align: center;
  position: relative;
}

.breadcrumb__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff8c42;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.breadcrumb__badge:hover {
  background: rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

.breadcrumb__badge svg {
  width: 16px;
  height: 16px;
}

.breadcrumb__title {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff 0%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.breadcrumb__description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-weight: 400;
}

/* Breadcrumb Navigation */
.breadcrumb__nav {
  display: inline-block;
  margin-bottom: 40px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.breadcrumb__link:hover {
  color: #ff8c42;
}

.breadcrumb__link svg {
  width: 16px;
  height: 16px;
}

.breadcrumb__separator {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__separator svg {
  width: 6px;
  height: 10px;
}

.breadcrumb__current {
  color: #ff8c42;
  font-size: 14px;
  font-weight: 600;
}

/* Scroll Indicator */
.breadcrumb__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: scrollBounce 2s infinite;
}

.breadcrumb__scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Decorative Shapes */
.breadcrumb__shape {
  position: absolute;
  z-index: 2;
  opacity: 0.5;
}

.breadcrumb__shape-1 {
  top: 10%;
  left: 5%;
  color: #ff8c42;
  animation: shapeRotate 20s linear infinite;
}

.breadcrumb__shape-2 {
  bottom: 15%;
  right: 8%;
  color: #fff;
  animation: shapeRotate 15s linear infinite reverse;
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Particles */
.breadcrumb__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff8c42;
  border-radius: 50%;
  opacity: 0.6;
}

.particle-1 {
  top: 20%;
  left: 15%;
  animation: particleFloat 6s ease-in-out infinite;
}

.particle-2 {
  top: 40%;
  right: 20%;
  animation: particleFloat 8s ease-in-out infinite 1s;
}

.particle-3 {
  bottom: 30%;
  left: 25%;
  animation: particleFloat 7s ease-in-out infinite 2s;
}

.particle-4 {
  top: 60%;
  right: 15%;
  animation: particleFloat 9s ease-in-out infinite 1.5s;
}

.particle-5 {
  bottom: 20%;
  right: 30%;
  animation: particleFloat 5s ease-in-out infinite 0.5s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 56px;
  }

  .breadcrumb__area {
    padding: 160px 0 100px;
  }
}

@media (max-width: 991px) {
  .breadcrumb__title {
    font-size: 48px;
  }

  .breadcrumb__area {
    padding: 140px 0 90px;
  }

  .breadcrumb__description {
    font-size: 16px;
  }

  .breadcrumb__shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .breadcrumb__title {
    font-size: 40px;
    letter-spacing: 1px;
  }

  .breadcrumb__area {
    padding: 120px 0 80px;
  }

  .breadcrumb__badge {
    font-size: 12px;
    padding: 8px 20px;
  }

  .breadcrumb__description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .breadcrumb__list {
    padding: 10px 20px;
    gap: 10px;
  }

  .breadcrumb__link,
  .breadcrumb__current {
    font-size: 13px;
  }

  .breadcrumb__scroll {
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .breadcrumb__title {
    font-size: 32px;
  }

  .breadcrumb__area {
    padding: 100px 0 70px;
  }

  .breadcrumb__badge {
    font-size: 11px;
    padding: 7px 18px;
    margin-bottom: 20px;
  }

  .breadcrumb__description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .breadcrumb__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Fix class */
.fix {
  overflow: hidden;
}

/*###### WHATSAPP ######*/
.contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 99999;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn.active {
  transform: rotate(45deg);
}

.contact-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Popup container */
.contact-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  min-width: 200px;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-popup h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

/* İletişim seçenekleri */
.contact-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.contact-option:last-child {
  margin-bottom: 0;
}

.contact-option:hover {
  transform: translateX(5px);
}

.contact-option.phone {
  background: #e3f2fd;
}

.contact-option.phone:hover {
  background: #2196f3;
  color: white;
}

.contact-option.whatsapp {
  background: #e8f5e9;
}

.contact-option.whatsapp:hover {
  background: #25d366;
  color: white;
}

.contact-option svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-option.phone svg {
  fill: #2196f3;
}

.contact-option.whatsapp svg {
  fill: #25d366;
}

.contact-option:hover svg {
  fill: white;
}

.contact-option span {
  font-size: 14px;
  font-weight: 500;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .contact-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .contact-popup {
    bottom: 85px;
    right: 20px;
    left: 20px;
    min-width: auto;
  }
}

/* ############# SERVICE DETAİL #############33 */
.service-detail-section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.service-detail-section {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.service-detail-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.risk-analysis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.risk-analysis-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.image-section {
  position: relative;
  width: 100%;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.quote-section {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #003366;
  color: white;
  padding: 30px 35px;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  line-height: 1.6;
}

.quote-section::before {
  content: '"';
  font-size: 60px;
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.content-section {
  padding-left: 20px;
}

.content-section > p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

.penalty-section {
  background: #fff5f5;
  border-left: 4px solid #c41e3a;
  padding: 25px 30px;
  margin-bottom: 40px;
}

.penalty-section h2 {
  color: #c41e3a;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.penalty-section p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.info-section h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.info-section p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .risk-analysis {
    padding: 40px;
  }

  .quote-section {
    right: -20px;
    bottom: -20px;
    max-width: 350px;
    padding: 25px 30px;
  }
}

@media (max-width: 968px) {
  .risk-analysis {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 30px;
  }

  .content-section {
    padding-left: 0;
  }

  .quote-section {
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 100%;
    margin-top: 20px;
  }

  .image-section {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  section {
    padding: 20px 15px;
  }

  .risk-analysis {
    padding: 20px;
  }

  .quote-section {
    padding: 20px 25px;
    font-size: 14px;
  }

  .penalty-section h2 {
    font-size: 18px;
  }

  .content-section > p {
    font-size: 15px;
  }

  .info-section h3 {
    font-size: 17px;
  }
}
.scroll__top {
  display: none;
}
