:root {
  --primary: #ffd700;
  --dark: #121212;
  --gray: #2c2c2c;
  --light: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}

header {
  background: linear-gradient(
    to right,
    #000000 0%,
    #000000 15%,
    rgba(18, 18, 18, 0.95) 100%
  );
  padding: 10px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--primary);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #000;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
}
.logo img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.logo2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--light);
  padding: 0;
}
.logo2 span {
  color: var(--primary);
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}
nav a:hover {
  color: var(--primary);
}

.cta-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 10px 25px;
  font-weight: 900;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-btn:hover {
  background: var(--light);
  transform: scale(1.05);
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

#hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("logo.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: slideUp 1s forwards;
  text-shadow: 2px 2px 10px #000;
}
.hero-content h1 span {
  color: var(--primary);
  display: block;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
  animation: slideUp 1s forwards 0.3s;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-block;
}

section {
  padding: 80px 10%;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#services {
  background-color: #0a0a0a;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.service-card {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #333;
  text-align: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px; /* Kutuların boyu eşit dursun diye */
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
}

#about {
  background-color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.profile-circle {
  width: 320px;
  height: 500px;
  border-radius: 50%;
  border: 5px solid #ffd700;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  margin: 0 auto;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.stat-box {
  background: var(--dark);
  padding: 20px;
  border: 1px solid var(--primary);
  text-align: center;
  flex: 1;
}
.stat-box h3 {
  color: var(--primary);
  font-size: 2rem;
}

#gallery {
  background-color: var(--dark);
  position: relative;
}
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-track-container {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 33.33%;
  padding: 0 10px;
  list-style: none;
}
.slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #333;
  display: block;
}
.slider-btn {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  flex-shrink: 0;
}
.slider-btn:hover {
  background-color: var(--primary);
  color: var(--dark);
}

#contact {
  background-color: var(--gray);
}
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-card {
  background: var(--dark);
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  border: 1px solid #333;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
}
.icon-box {
  width: 80px;
  height: 80px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--primary);
  font-size: 2rem;
  transition: 0.3s;
}
.contact-card:hover .icon-box {
  background: var(--primary);
  color: var(--dark);
}

footer {
  background: #000;
  padding: 40px;
  text-align: center;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .logo {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.sticky-call {
  position: fixed;
  bottom: 500px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1001;
  animation: pulse 2s infinite;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }
  
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    margin-left: auto; 
    cursor: pointer;
  }

  .logo {
    width: 50px;
    height: 50px;
  }
  
  .logo2 {
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    align-items: flex-start;
  }

  nav ul {
    position: absolute;
    top: 100%; 
    left: -100%;
    width: 100%;
    height: 100vh; 
    background: rgba(18, 18, 18, 0.98);
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    transition: 0.4s ease-in-out;
    border-top: 1px solid var(--primary);
  }

  nav ul.active {
    left: 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  nav a {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  
  #about {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-circle {
    width: 200px;
    height: 300px;
    margin-bottom: 30px;
  }

  .slide {
    min-width: 100%;
  }
}
.bottom-navbar {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: #fff;
		border-top: 1px solid #ddd;
		display: flex;
		justify-content: center;
		align-items: center;
		box-shadow: 0 -2px 10px rgb(0 0 0 / 0.05);
		z-index: 9999;
	}
	.bottom-link {
		display: flex;
		align-items: center;
		gap: 8px;
		text-decoration: none;
		font-size: 16px;
		font-weight: 600;
		color: #333;
	}
	.bottom-link i {
		font-size: 18px;
	}
	.bottom-link.phone {
		color: #007bff;
		animation: pulsePhone 1.5s infinite;
	}

	@keyframes pulsePhone {
		0% {
			transform: scale(1);
		}
		50% {
			transform: scale(1.1);
			color: #0056b3;
		}
		100% {
			transform: scale(1);
		}
	}