@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
  --bg--black-900: #151515;
  --bg--black-100: #1F1C2C;
  --bg--black-50: #2c283d;
  --text-black-900: #ccc9dc;
  --text-black-700: #ccc9dc;
}

body {
  line-height: 1.5;
  font-size: 16px;
  font-family: "Poppins" sans-serif;
  background: linear-gradient(45deg, #13111C, #2d2a3a, #13111C);
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: border-box;
}
ul {
  list-style: none;
}

.section {
  background: linear-gradient(235deg, #1F1C2C, #10183a, #0d0d0d);
  min-height: 100vh;
  display: block;
  padding: 0 30px;
  opacity: 1;
  position: fixed;
  left: 270px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

.section.back-section {
  z-index: 1;
}

.section.back-section2 {
  z-index: 1;
}

.section.active {
  z-index: 2;
  opacity: 1;
  animation: slideSection 1s ease;
}
@keyframes slideSection {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.hidden {
  display: none !important;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
.section .container {
  padding-top: 60px;
  padding-bottom: 70px;
}
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

/* Contact section için ULTRA AGGRESSIVE spacing fix - v2.0 */
.contact .section-title {
  margin-bottom: 10px !important;
  padding-bottom: 0px !important;
}

.contact h3.contact-title {
  margin-top: 10px !important;
  margin-bottom: 8px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.contact h4.contact-sub-title {
  margin-top: 0px !important;
  margin-bottom: 20px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-black-900);
  position: relative;
}
.section-title h2::before {
  content: "";
  height: 4px;
  width: 50px;
  background-color: var(--skin-color);
  position: absolute;
  top: 100%;
  left: 0;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 25px;
  background-color: var(--skin-color);
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 35px;
  color: white;
  border-radius: 40px;
  display: inline-block;
  white-space: nowrap;
  border: none;
  background: var(--skin-color);
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
}

.btn-hireMe,
.btn-cv {
  display: inline-block;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--skin-color);
  margin: 1rem auto;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  border-style: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: transparent;
  border: 3px solid var(--skin-color);
  box-shadow: 0px 0px 15px rgba(255, 107, 51, 0.3);
  transition: all 0.3s ease;
}

.btn-hireMe:before,
.btn-cv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--skin-color);
  background: var(--skin-color);
  transform: translateX(-101%);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-hireMe:hover,
.btn-cv:hover {
  transition: all 0.5s ease;
  color: #ffffff;
  background: var(--skin-color);
  box-shadow: 0 0 25px var(--skin-color);
  transform: translateY(-2px);
}

.btn-hireMe:hover::before,
.btn-cv:hover::before {
  transform: translateX(0);
}

/* aside */
.aside {
  width: 270px;
  background: linear-gradient(180deg, #1F1C2C, #0d0d0d);
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
  height: 100%;
  border-right: 2px solid var(--bg--black-50);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.aside .logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  display: flex;
  gap: 15px;
}

.aside .logo a {
  color: var(--text-black-900);
  padding: 5px;
  position: relative;
  margin: 0px 5px;
}

.socialContainer {
  background-color: transparent;
  transition-duration: 0.3s;
}

.aside .nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--bg--black-50);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 5 px;
  background: var(--bg--black-100);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.aside .nav-toggler span {
  height: 2px;
  width: 18px;
  background: var(--skin-color);
  display: inline-block;
  position: relative;
}

.aside .nav-toggler.open span {
  background-color: transparent;
}

.aside .nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--skin-color);
  position: absolute;
  top: -6px;
  left: 0;
}

.aside .nav-toggler.open span::before {
  transform: rotate(45deg);
  top: 0;
}

.aside .nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--skin-color);
  position: absolute;
  top: 6px;
  left: 0;
}

.aside .nav-toggler.open span::after {
  transform: rotate(-45deg);
  top: 0;
}

.aside .nav {
  margin-top: 50px;
}

.aside .nav li {
  margin-bottom: 20px;
  display: block;
}

.aside .nav li a {
  font-size: 16px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid var(--bg--black-50);
  color: var(--text-black-900);
  padding: 5px 15px;
}

.aside .nav li a.active {
  color: var(--skin-color);
}

.aside .nav li a i {
  margin-right: 15px;
}

/* HOME */

.home {
  min-height: 100vh;
  display: flex;
  color: var(--text-black-900);
}
.home .home-info {
  flex: 0 0 55%;
  max-width: 55%;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h3.hello {
  font-size: 28px;
  margin: 20px 0;
  font-weight: 500;
}

h3.hello span {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--skin-color);
}

h3.my-profession {
  font-size: 24px;
  margin: 25px 0;
  font-weight: 400;
}

.typing {
  color: var(--skin-color);
}

.home-info p {
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-black-700);
  text-align: justify;
}

.home .home-img {
  flex: 0 0 35%;
  max-width: 35%;
  text-align: center;
  position: relative;
  margin-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-img::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-bottom: 4px solid var(--skin-color);
  border-right: 4px solid var(--skin-color);
  right: 5%;
  bottom: 5%;
  border-radius: 15px;
}

.home-img::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-top: 4px solid var(--skin-color);
  border-left: 4px solid var(--skin-color);
  left: 5%;
  top: 5%;
  border-radius: 15px;
}

.home .home-img img {
  margin: auto;
  width: 90%;
  max-width: 400px;
  height: auto;
  border-radius: 50px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

/* Sol üst köşe */
.home-img::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-top: 4px solid var(--skin-color);
  border-left: 4px solid var(--skin-color);
  left: 5%;
  top: 5%;
  border-radius: 15px;
}

/* Sağ alt köşe */
.home-img::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-bottom: 4px solid var(--skin-color);
  border-right: 4px solid var(--skin-color);
  right: 5%;
  bottom: 5%;
  border-radius: 15px;
}

.home .home-img img:hover {
  transform: scale(1.05);
}

/* About */

.about .about-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: left;
}

.about .about-content .about-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--text-black-900);
}
.about .about-content .about-text h3 span {
  color: var(--skin-color);
}

.about .about-content .about-text p {
  font-size: 16px;
  line-height: 25px;
  color: var(--text-black-700);
  text-align: justify;
}
.about .about-content .personal-info {
  flex: 0 0 60%;
  max-width: 60%;
  margin-top: 40px;
  text-align: left;
}

.about .about-content .skills {
  flex: 0 0 40%;
  max-width: 40%;
  margin-top: 40px;
  text-align: left;
}
.about .about-content .personal-info .info-item {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.about .about-content .personal-info .info-item p {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  color: var(--text-black-900);
  border-bottom: 1px solid var(--bg--black-50);
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: var(--text-black-700);
  margin-left: 4px;
  display: inline-block;
}
.about .about-content .personal-info .buttons {
  margin-top: 30px;
  justify-content: flex-start;
}

.about .about-content .personal-info .buttons btn {
  margin-top: 10px;
}

.about .about-content .skills .skill-item {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .skills .skill-item h5 {
  line-height: 40px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-black-900);
  text-transform: capitalize;
}

.about .about-content .skills .skill-item .progress {
  background-color: var(--bg--black-50);
  height: 7px;
  border-radius: 4px;
  width: 100%;
  position: relative;
}

.about .about-content .skills .skill-item {
  margin-bottom: 25px;
}
.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
  background-color: var(--skin-color);
}

.about .about-content .skills .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -40px;
  font-weight: 400;
  color: var(--text-black-900);
  line-height: 40px;
}

.about .about-content .education,
.about .about-content .experience,
.about .about-content .leadership {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 30px;
  text-align: left;
}

.about .about-content h3.title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-black-900);
}

.about .about-content .timeline-box {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .timeline {
  background-color: var(--bg--black-100);
  padding: 30px 15px;
  border: 1px solid var(--bg--black-50);
  border-radius: 10px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shadow-dark {
  box-shadow: 0 0 20px #302e4d26;
}

.about .about-content .timeline .timeline-item {
  position: relative;
  padding-left: 30px;
  padding-bottom: 50px;
  text-align: left;
}

.about .about-content .timeline .timeline-item:last-child {
  padding-bottom: 0;
}
.about .about-content .timeline .timeline-item::before {
  content: "";
  width: 1px;
  position: absolute;
  height: 100%;
  left: 7px;
  top: 0;
  background-color: var(--skin-color);
}

.about .about-content .timeline .circle-dot {
  position: absolute;
  left: 0;
  top: 0;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: var(--skin-color);
}
.about .about-content .timeline .timeline-date {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-black-700);
  margin-bottom: 12px;
}

.about .about-content .timeline .timeline-date .fa {
  margin-right: 5px;
}

.about .about-content .timeline .timeline-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: var(--text-black-900);
}

.about .about-content .timeline .timeline-text {
  font-size: 16px;
  color: var(--text-black-700);
  line-height: 25px;
  text-align: justify;
}
.timeline-text-2 a {
  font-size: 16px;
  color: var(--skin-color);
  line-height: 25px;
  text-align: justify;
}

.timeline-text-2 {
  font-size: 17px;
  color: var(--text-black-700);
  font-style: italic;
  line-height: 25px;
  text-align: justify;
}

/* Service */

.service .container {
  padding-bottom: 40px;
}

.service .service-item {
  margin-bottom: 30px;
  flex: 0 0 33%;
  max-width: 33%;
}
.service .service-item .service-item-inner {
  background-color: var(--bg--black-100);
  padding: 30px 15px;
  border: 1px solid var(--bg--black-50);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.service .service-item .service-item-inner:hover {
  box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

.service .service-item .service-item-inner .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.service .service-item .service-item-inner .icon .fa {
  font-size: 40px;
  line-height: 60px;
  color: var(--skin-color);
  transition: all 0.5s ease;
}
.service .service-item .service-item-inner:hover .icon {
  background: var(--skin-color);
}
.service .service-item .service-item-inner:hover .icon .fa {
  color: #fff;
  font-size: 25px;
}
.service .service-item .service-item-inner h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 15px;
  text-transform: capitalize;
}

.service .service-item .service-item-inner p {
  font-size: 16px;
  color: var(--text-black-700);
  line-height: 25px;
}

/* Portfolio */

.info-project {
  margin: 10px;
}

.project-link a {
  color: var(--text-black-900);
  margin-right: 15px;
}

.project-link {
  margin: 10px 0px 10px 15px;
  font-size: 20px;
}

.portfolio .portfolio-heading {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

.portfolio .portfolio-heading h2 {
  font-weight: 500;
  color: var(--text-black-900);
}

.portfolio .container {
  padding-bottom: 40px;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  flex: 0 0 25%;
  max-width: 25%;
}

.portfolio .portfolio-item-inner {
  overflow: hidden;
  border-radius: 10px;
  border: 6px solid var(--bg--black-100);
  cursor: pointer;
}

.portfolio .portfolio-item-inner .portfolio-img img {
  display: block;
  width: 100%;
}

/* Contact Us */

.contact-title {
  font-size: 25px;
  color: var(--skin-color);
  text-align: center;
  margin-top: 10px !important;
  margin-bottom: 5px !important;
}

.contact-sub-title {
  font-size: 15px;
  color: var(--text-black-900);
  text-align: center;
  margin-top: 0px !important;
  margin-bottom: 15px !important;
}

.contact .contact-info-item {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  margin-bottom: 30px;
}

.contact .contact-info-item .icon {
  display: inline-block;
}

.contact .contact-info-item .icon .fa {
  font-size: 25px;
  color: var(--skin-color);
}

.contact .contact-info-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 15px;
  text-transform: capitalize;
}

.contact .contact-info-item p {
  font-size: 16px;
  color: var(--text-black-700);
  line-height: 25px;
  font-weight: 400;
}

.contact .contact-form {
  flex: 0 0 100%;
  max-width: 100%;
}
.contact .contact-form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact .contact-form .col-6 {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
}
.contact .contact-form .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.contact .contact-form .form-item {
  margin-bottom: 10px;
}

.contact .contact-form .form-item .form-control {
  width: 100%;
  height: 50px;
  border-radius: 15px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 25px;
  font-size: 16px;
  color: var(--text-black-700);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
}

.contact .contact-form .form-item .form-control:focus {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15), 
    rgba(255, 255, 255, 0.08)
  );
  border-color: rgba(var(--skin-color), 0.5);
  color: var(--text-black-900);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(var(--skin-color), 0.15),
    0 0 0 3px rgba(var(--skin-color), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact .contact-form .form-item .form-control:hover {
  border-color: rgba(var(--skin-color), 0.3);
  transform: translateY(-1px);
}

.contact .contact-form .form-item textarea.form-control {
  height: 100px;
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
}

.contact .contact-form .btn {
  height: 55px;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--skin-color), rgba(var(--skin-color), 0.8));
  border: none;
  border-radius: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 
    0 4px 15px rgba(var(--skin-color), 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

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

.contact .contact-form .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 30px rgba(var(--skin-color), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact .contact-form .btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .section .container {
    padding-top: 70px;
  }

  .aside {
    left: -270px;
    z-index: 1000;
  }
  
  .aside .nav-toggler {
    display: flex;
    left: 30px;
    top: 30px;
    z-index: 1060;
  }

  .aside .nav-toggler.open {
    left: 300px;
  }

  .aside.open {
    left: 0;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
  }

  .section {
    left: 0;
    z-index: 1;
  }
  
  .section.open {
    left: 0;
  }
  
  .section.open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    pointer-events: none;
  }

  .about .about-content .personel-info .info-item p span {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .contact .contact-info-item,
  .portfolio .portfolio-item,
  .service .service-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .home .home-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .home .home-img {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about .about-content .skills,
  .service .service-item,
  .portfolio .portfolio-item,
  .contact .contact-info-item,
  .about .about-content .experience,
  .about .about-content .education,
  .about .about-content .leadership,
  .about .about-content .personel-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact .contact-form .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact .contact-form .row {
    gap: 0;
  }
  
  .home .home-info {
    order: 2;
    margin-bottom: 30px;
    margin-top: 10px;
  }
  
  .home .home-img {
    order: 1;
    margin-top: 20px;
    margin-left: 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 100;
  }
  
  .home .home-info h3.hello {
    font-size: 22px;
  }
  
  .home .home-info h3.my-profession {
    font-size: 18px;
  }
  
  .home .home-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
  }
  
  .home .home-img img {
    max-width: 180px;
    height: auto;
  }
  
  .section .container {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .home .row {
    flex-direction: column;
  }
}

/* CONTACT FORM STYLES */
.form-status {
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-status.success {
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid #27ae60;
  color: #27ae60;
}

.form-status.error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid #e74c3c;
  color: #e74c3c;
}

.form-status i {
  font-size: 16px;
}

.btn-loading {
  display: none;
}

.form-control:focus {
  box-shadow: 0 0 0 2px rgba(var(--skin-color), 0.3);
  border-color: var(--skin-color);
}

.form-control.error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Loading spinner animation */
.fa-spinner.fa-spin {
  animation: fa-spin 1s infinite linear;
}

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

/* CONTACT INFO - TEMİZ VE DÜZENLİ */

/* 3 Kart Layout - sadece contact info kartları için */
.contact .contact-info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: -20px;
}

/* Map section için sıfır margin */
.contact .map-row {
  margin-top: 0;
  margin-bottom: 0;
}

.contact-info-item {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 25px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

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

.contact-info-item:hover::before {
  left: 100%;
}

.contact-info-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15), 
    rgba(255, 255, 255, 0.08)
  );
  border-color: rgba(var(--skin-color), 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--skin-color), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-info-item .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, 
    rgba(var(--skin-color), 0.2), 
    rgba(var(--skin-color), 0.1)
  );
  border: 2px solid rgba(var(--skin-color), 0.3);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--skin-color);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 
    0 4px 15px rgba(var(--skin-color), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info-item .icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--skin-color), 
    transparent, 
    var(--skin-color)
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-item:hover .icon {
  background: linear-gradient(135deg, 
    rgba(var(--skin-color), 0.3), 
    rgba(var(--skin-color), 0.15)
  );
  border-color: var(--skin-color);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 8px 25px rgba(var(--skin-color), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-info-item:hover .icon::after {
  opacity: 0.6;
}

.contact-info-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-black-900);
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-black-700);
  opacity: 0.8;
  margin: 0;
}

.contact-info-item:hover p {
  opacity: 1;
  color: var(--text-black-900);
}

/* MAP SECTION */
.map-section {
  width: 100%;
  text-align: center;
  padding-top: 10px !important;
  padding-bottom: 0 !important;
}

.map-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--text-black-900);
}

.map-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(var(--skin-color), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact .row {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-info-item {
    padding: 15px;
  }
  
  .contact-info-item .icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .contact-info-item h4 {
    font-size: 14px;
  }
  
  .contact-info-item p {
    font-size: 12px;
  }
  
  .map-title {
    font-size: 18px;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

/* ESKİ FORM STYLING GERİ DÖNDÜRÜLDİ */
.contact-form {
  margin-top: 30px;
  margin-bottom: 10px;
}

/* CONTACT SECTION PADDING OVERRIDE */
.contact .container {
  padding-bottom: 10px !important;
}

.contact .contact-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-top: 25px !important;
  margin-bottom: 15px !important;
  background: linear-gradient(135deg, var(--skin-color), rgba(var(--skin-color), 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact .contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--skin-color), rgba(var(--skin-color), 0.7));
  border-radius: 2px;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 768px) {
  .contact .contact-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/* ===== SERVICES SECTION ENHANCED ===== */
.service-description {
  text-align: center;
  margin-bottom: 40px;
}

.service-intro {
  font-size: 18px;
  color: var(--text-black-700);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.service-item {
  margin-bottom: 30px;
}

.service-item-inner {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(var(--skin-color), 0.1), 
    transparent
  );
  transform: rotate(-45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.service-item-inner:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translate(50%, 50%);
}

.service-item-inner:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15), 
    rgba(255, 255, 255, 0.08)
  );
  border-color: rgba(var(--skin-color), 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--skin-color), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-item-inner .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, 
    rgba(var(--skin-color), 0.2), 
    rgba(var(--skin-color), 0.1)
  );
  border: 3px solid rgba(var(--skin-color), 0.3);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--skin-color);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 
    0 8px 25px rgba(var(--skin-color), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-item-inner:hover .icon {
  background: linear-gradient(135deg, 
    rgba(var(--skin-color), 0.3), 
    rgba(var(--skin-color), 0.15)
  );
  border-color: var(--skin-color);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 15px 35px rgba(var(--skin-color), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-item-inner h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-black-900);
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--text-black-700);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
  flex-grow: 1;
}

.service-item-inner:hover .service-desc {
  opacity: 1;
  color: var(--text-black-900);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.tag {
  display: inline-block;
  background: linear-gradient(135deg, 
    var(--skin-color), 
    rgba(var(--skin-color), 0.8)
  );
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid var(--skin-color);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 
    0 4px 15px rgba(var(--skin-color), 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.tag:hover,
.service-item-inner:hover .tag {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9), 
    rgba(255, 255, 255, 0.8)
  );
  color: var(--skin-color);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(var(--skin-color), 0.4),
    0 0 0 2px rgba(var(--skin-color), 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE SERVICES */
@media (max-width: 991px) {
  .service-item {
    margin-bottom: 25px;
  }
  
  .service-item-inner {
    padding: 30px 20px;
  }
  
  .service-item-inner .icon {
    width: 70px;
    height: 70px;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .service-item-inner h4 {
    font-size: 18px;
  }
  
  .service-desc {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .service-intro {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .service-item-inner {
    padding: 25px 15px;
  }
  
  .service-item-inner .icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .service-item-inner h4 {
    font-size: 16px;
  }
  
  .service-desc {
    font-size: 12px;
  }
  
  .tag {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* ===== PORTFOLIO COMING SOON SECTION ===== */
.portfolio-coming-soon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.coming-soon-content {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.coming-soon-content:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(var(--skin-color), 0.2);
}

.coming-soon-icon {
  font-size: 60px;
  color: var(--skin-color);
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}

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

.coming-soon-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-black-900);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--skin-color), rgba(var(--skin-color), 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-text {
  font-size: 16px;
  color: var(--text-black-700);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.8;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(135deg, 
    rgba(var(--skin-color), 0.1), 
    rgba(var(--skin-color), 0.05)
  );
  border: 1px solid rgba(var(--skin-color), 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(135deg, 
    rgba(var(--skin-color), 0.2), 
    rgba(var(--skin-color), 0.1)
  );
  border-color: var(--skin-color);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 18px;
  color: var(--skin-color);
  min-width: 20px;
}

.feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-black-700);
}

.coming-soon-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-portfolio-notify,
.btn-portfolio-cv {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.btn-portfolio-notify {
  background: linear-gradient(135deg, var(--skin-color), rgba(var(--skin-color), 0.8));
  color: white;
  border-color: var(--skin-color);
}

.btn-portfolio-notify:hover {
  background: transparent;
  color: var(--skin-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--skin-color), 0.4);
}

.btn-portfolio-cv {
  background: transparent;
  color: var(--skin-color);
  border-color: rgba(var(--skin-color), 0.5);
}

.btn-portfolio-cv:hover {
  background: linear-gradient(135deg, var(--skin-color), rgba(var(--skin-color), 0.8));
  color: white;
  border-color: var(--skin-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--skin-color), 0.4);
}

.coming-soon-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -30px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(var(--skin-color), 0.3), 
    transparent
  );
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(var(--skin-color), 0.3);
  background: transparent;
  transition: all 0.3s ease;
}

.timeline-dot.active {
  background: var(--skin-color);
  border-color: var(--skin-color);
  box-shadow: 0 0 10px rgba(var(--skin-color), 0.5);
}

.timeline-dot.current {
  background: linear-gradient(45deg, var(--skin-color), rgba(var(--skin-color), 0.7));
  border-color: var(--skin-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(var(--skin-color), 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(var(--skin-color), 0.8);
    transform: scale(1.1);
  }
}

.timeline-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-black-700);
  text-align: center;
  opacity: 0.8;
}

.timeline-item:has(.timeline-dot.active) span,
.timeline-item:has(.timeline-dot.current) span {
  color: var(--skin-color);
  opacity: 1;
  font-weight: 600;
}

/* RESPONSIVE COMING SOON */
@media (max-width: 991px) {
  .coming-soon-content {
    padding: 40px 30px;
  }
  
  .coming-soon-icon {
    font-size: 50px;
  }
  
  .coming-soon-content h3 {
    font-size: 24px;
  }
  
  .coming-soon-text {
    font-size: 15px;
  }
  
  .coming-soon-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .coming-soon-timeline {
    gap: 15px;
  }
  
  .timeline-item:not(:last-child)::after {
    width: 30px;
    right: -22px;
  }
}

@media (max-width: 768px) {
  .portfolio-coming-soon {
    min-height: 50vh;
  }
  
  .coming-soon-content {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .coming-soon-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .coming-soon-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .coming-soon-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 12px 15px;
  }
  
  .feature-item i {
    font-size: 16px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
  
  .coming-soon-cta {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .btn-portfolio-notify,
  .btn-portfolio-cv {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .coming-soon-timeline {
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .timeline-item:not(:last-child)::after {
    display: none;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
  
  .timeline-item span {
    font-size: 11px;
  }
}

/* Language Switcher */
.language-switcher {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.lang-toggle {
  background-color: var(--bg--black-50);
  color: var(--text-black-900);
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.lang-toggle .fa-chevron-down {
  transition: transform 0.3s ease;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg--black-100);
  border: 1px solid var(--bg--black-50);
  border-radius: 10px;
  padding: 5px;
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
}

.lang-option:hover {
  background-color: var(--bg--black-50);
}

.lang-option.active {
  background-color: var(--skin-color);
  color: white;
}

.lang-option img {
  width: 20px;
  height: auto;
}
