* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background-color: #000;

}

html {
    scroll-behavior: smooth;
}
section{
    position: relative;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Marcellus", sans-serif;
}
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        width 0.2s ease,
        height 0.2s ease,
        background-color 0.2s ease,
        opacity 0.2s ease;
    z-index: 9999;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
    color:white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}

.navbar-brand {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    color:#293133;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    color:#293133;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

.hero-image-left,
.hero-image-right {
    position: absolute;
    top: 0;
    width: 1000px;
    height: 100%;
    overflow: hidden;
    will-change: transform;
}
.left-slide,
.right-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  will-change: opacity, transform;
  width: 50vw;
height: 100%;
}

.left-slide .active,
.right-slide .active {
  opacity: 1;
}

.hero-image-left {
    left: 50%;
    top: 0;

}

.hero-image-right {
    right: 50%;
    top: 0;

}

.hero-image-left img,
.hero-image-right img {
    width: 1000px;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight:400;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    font-family: "Montserrat", sans-serif;
}

.hero-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-weight: 700;

}
.hero-sub-out{
    width: 50%;
    float:left;
}

.hero-subtitle,.hero-title{
    opacity: 0;
    transform: translateY(60px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(153, 153, 153, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: background 0.3s;
}

.scroll-indicator:hover {
    background: rgba(0,0,0,0.2);
}
.contact-item{
    margin-bottom:8%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about-section {
    background-color: #000;
    color: #fff;
    padding: 8rem 0;
    position: relative;
}

.about-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    margin: 0 auto;
    width: 70%;
}

.about-content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
    color: #fff;
}

.about-text {
    color: #d1d1d1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.link-arrow {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: #d1d1d1;
    gap: 1rem;
}
.seperator{
    background-color:#27272a;
    bottom: 0px;
    flex: 0 0 auto;
    height: 2px;
    left: 0px;
    overflow: visible;
    position: absolute;
    right: 0px;
    z-index: 2;
    width: 75%;
    margin:0 auto;
}

/* Projects Section */
.projects-section {
    background-color: #000;
    color: #fff;
    padding: 8rem 0;
}
.text-muted {color:#fff !important}


.project-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
    cursor: pointer;
    margin-bottom: 2rem;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    width: 100%;
}

.project-category {
    color: #d1d1d1;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    width: 100%;
}

/* Services Section */
.services-section,
.calendar-section {
    background-color: #000;
    padding: 8rem 0;
    position: relative;
}

.service-card {
    position: sticky;
    width: 100%;
    will-change: transform;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    top: 120px;
    background-color: #000;
    border-top: 2px solid #fff;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
    padding:40px 0px 100px
}


.service-card .is-active {
  z-index: 5;
  opacity: 1;
}

/* üstte kalmış eski satırlar */
.service-card .is-passed {
  opacity: 0.15;
}

.service-title {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.5px;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
    color:#fff
}

.service-item {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 1%;
    margin-top:1%;
    display: grid;
    align-items: center;
    justify-items: end;
    align-content: space-around;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background-color: #000;
}

.testimonial-card {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background-color: #000;
}
.testimonial-card .active {
  opacity: 1;
}

.testimonial-quote {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
}

.testimonial-company {
    font-weight: 900;
    color: #000;
}
.carousel-inner{
    position: relative;
    overflow: hidden;
    max-height: 285px;
    height:285px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background-color: #293133;
    border-radius: 40px;
    opacity: 1;
    position: static;
    margin: 2rem 0.5rem 0;
    transition: background-color 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #333;
}

.carousel-indicators {
    margin-bottom: -3rem;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    width: 32px;
    border-radius: 4px;
    background-color: #000;
}

/* CTA Section */
.cta-section {
    background-color: #000;
    color: #fff;
    padding: 8rem 0 0 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 3rem;
}

.btn-cta {
    background-color: #fff;
    color: #000;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border-radius: 10px;
}

.btn-cta:hover {
    background-color: #e5e5e5;
    color: #000;
    gap: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    overflow: hidden;
    background-color: #000;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(
    to right,
    rgba(0,0,0,1),
    rgba(0,0,0,0)
  );
}

/* SAĞ GRADIENT */
.gallery-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width:30%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(
    to left,
    rgba(0,0,0,1),
    rgba(0,0,0,0)
  );
}

.gallery-track{
    transform: rotate(3deg);
    transform-origin: center;
    width: 120%;
    margin-left: -10%;
}

.gallery-scroll {
    display: flex;
    gap: 1rem;
    animation: scroll 30s linear infinite;
    margin-top:3%;

}

.gallery-scroll:hover {
    animation-play-state: paused;
}
.angle-section{
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 350px;
    max-height: 350px;
}
.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 200px;
    border-radius: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 0.85rem;
    color: #999;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

.footer-text {
    color: #999;
    font-size: 0.9rem;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}
.copyright a{
    font-weight: 600;
}
.list-unstyled li a,
.copyright a{
    color:#999;
    text-decoration: none;
}
form .form-group{
    margin-bottom:3%
}
form .form-group label{
    margin-bottom:1%;
}
input,
textarea{
    padding:2% !important;
    font-size: 16px !important;
    background-color: #293133 !important;
    border-radius: 2px !important;
    border:none !important;
    color:white !important;
}
input:focus,
textarea:focus{
    border: 1px solid #fff !important;
}
input::placeholder,
textarea::placeholder{
    color:#fff !important;
    opacity: 0.4 !important;
}
.ct-loader{
     position: fixed;

    z-index: 9999999;

    pointer-events: all;
    background: black;
    width: 100%;

    box-sizing: border-box;
    height: -webkit-fill-available;
    opacity: 0.8;
    display: none;

}
.loader {
        transform: rotateZ(45deg);
        perspective: 1000px;
        border-radius: 50%;
        width: 150px;
        height: 150px;
        color: #fff;
        position: absolute;

    left: 45%;
    top: 35%;
      }
        .loader:before,
        .loader:after {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: inherit;
          height: inherit;
          border-radius: 50%;
          transform: rotateX(70deg);
          animation: 1s spin linear infinite;
        }
        .loader:after {
          color: #FF3D00;
          transform: rotateY(70deg);
          animation-delay: .4s;
        }
        .feat-img img{
            width: 100%;
        }

      @keyframes rotate {
        0% {
          transform: translate(-50%, -50%) rotateZ(0deg);
        }
        100% {
          transform: translate(-50%, -50%) rotateZ(360deg);
        }
      }

      @keyframes rotateccw {
        0% {
          transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
          transform: translate(-50%, -50%) rotate(-360deg);
        }
      }

      @keyframes spin {
        0%,
        100% {
          box-shadow: .2em 0px 0 0px currentcolor;
        }
        12% {
          box-shadow: .2em .2em 0 0 currentcolor;
        }
        25% {
          box-shadow: 0 .2em 0 0px currentcolor;
        }
        37% {
          box-shadow: -.2em .2em 0 0 currentcolor;
        }
        50% {
          box-shadow: -.2em 0 0 0 currentcolor;
        }
        62% {
          box-shadow: -.2em -.2em 0 0 currentcolor;
        }
        75% {
          box-shadow: 0px -.2em 0 0 currentcolor;
        }
        87% {
          box-shadow: .2em -.2em 0 0 currentcolor;
        }
      }

/* Responsive */
@media (max-width: 768px) {
    h2{
        font-size: 32px;
    }
    .hero-image-left,
    .hero-image-right {
        width: 50%;
    }

    .about-section,
    .projects-section,
    .services-section,
    .testimonials-section,
    .cta-section {
        padding: 2rem 0;
    }

    .testimonial-card {
        padding: 1%;
    }

    .testimonial-quote {
        font-size: 15px;
        margin-bottom: 3%;
    }
    .hero-sub-out{
        width: 100%;
    }
    .left-slide,
    .right-slide{
        width: 100%;
    }
    .about-text,
    .text-muted{
        font-size: 15px;
        text-align: center;
    }
    .service-card{
        flex-direction: column;
    }
    .custom-cursor{
        display: none;
    }
    .service-item p{
        text-align: center;
        width: 100%;
    }
    .gallery-item{
        width: 88%;
        height: 220px;
    }
    footer{
        padding: 0;
    }
    #services .container .row{
        display: contents;
    }
    .service-title{
        font-size: 38px;
    }

    .hero-image-left img,
    .hero-image-right img {
        display: none;
    }
    .hero-subtitle,.hero-title{
        opacity: 1;
    }
    .hero-section{
        height: 600px;;
    }


}


.calendar-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.calendar-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.calendar-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.5px;
}

.month-nav-btn {
  background: #f7fafc;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4a5568;
  transition: background-color 0.2s, transform 0.2s;
}

.month-nav-btn:hover:not(:disabled) {
  background: #edf2f7;
  transform: scale(1.05);
}

.month-nav-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.month-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.loading-indicator {
  text-align: center;
  padding: 12px;
  color: #718096;
  font-size: 14px;
  margin-bottom: 16px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.weekday {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #718096;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #2d3748;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.calendar-day:not(.empty):hover {
  transform: scale(1.05);
}

.calendar-day.empty {
  cursor: default;
  color: transparent;
}

.calendar-day.marked {
  background: linear-gradient(135deg, #293133 0%, #293133 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.calendar-day.marked:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.calendar-day.today {
  border: 2px solid #667eea;
  font-weight: 700;
}

.calendar-day.today.marked {
  border: 2px solid white;
}

.calendar-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  display: inline-block;
}

.legend-dot.marked {
  background: linear-gradient(135deg, #293133 0%, #293133 100%);
}

.legend-dot.today {
  border: 2px solid #667eea;
  background: white;
}

.legend-text {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}
.event-title{
  text-align: center;
    font-size: 50px;
    border-bottom: 1px solid white;
    padding-bottom: 2%;
}
.event-item{
  list-style: none;
  font-size: 20px;
}


/* Responsive tasarım */
@media (max-width: 640px) {
  .event-title {
    font-size: 34px;
  }
  #servicesPage{
    margin-top: 14%;
  }
  .calendar-container{
    max-width: max-content;
  }
  .calendar-card {
    padding: 20px;
    border-radius: 16px;
  }

  .calendar-title {
    font-size: 22px;
  }

  .month-nav-btn {
    width: 40px;
    height: 40px;
  }

  .calendar-day {
    font-size: 14px;
  }

  .weekday {
    font-size: 12px;
  }

  .calendar-legend {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.popup {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

/* 🔥 SADECE marked hover */
.marked:hover .popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.popup a{
    text-decoration: none;
    color:#fff;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}


.whatsapp-sticky {
  position: fixed;
  right: 3%;
  bottom: 10%; /* footer üstünde dursun */
  z-index: 9999;

  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  animation: bounce 2s infinite;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 8px;

  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  transition: all .25s ease;
}

.whatsapp-sticky:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}
.whatsapp-sticky svg{
    font-size: 37px;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 900px;
    margin: auto;
    background: #111;
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 9999;

    /* Animasyon için */
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.6s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.cookie-content a {
    color: #4da3ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons .btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons .accept {
    background: #4CAF50;
    color: #fff;
}

.cookie-buttons .accept:hover {
    background: #43a047;
}

.cookie-buttons .reject {
    background: #555;
    color: #fff;
}

.cookie-buttons .reject:hover {
    background: #444;
}

@media (max-width: 600px) {
    .cookie-buttons {
        flex-direction: column;
    }
}
