/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #175560;
  --accent: #22b375;
  --dark: #0b3338;
  --light: #f4f4f4;
  --text: #333;
  --bg-footer: #091f23;
  --font-main: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: #fff;
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: var(--dark);
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: var(--dark);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    display: none;
    border-radius: 8px;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://source.unsplash.com/featured/?paint') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.hero .btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #1a9e66;
}

/* Features */
.features {
  background: var(--light);
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 700px;
  margin: auto;
}

.testimonial {
  background: #fff;
  padding: 20px 30px;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
  background: var(--bg-footer);
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
  display: block;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Sabit Butonlar */
.fixed-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.fixed-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.fixed-button:hover {
  filter: brightness(0.9);
}

.whatsapp-button {
  background: #25d366;
}

.call-button {
  background: #007bff;
}
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: left;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.contact-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #666;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form, .contact-info {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form .btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form .btn:hover {
  background: #1a9e66;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
  color: var(--dark);
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}
.hizmetler-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.hizmet-kutu {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.hizmet-kutu:hover {
  transform: translateY(-5px);
}

.hizmet-kutu img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.hizmet-kutu h3 {
  font-size: 20px;
  color: #175560;
  margin-bottom: 10px;
}

.hizmet-kutu p {
  font-size: 15px;
  color: #555;
}
.features {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.feature-box img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 20px;
  color: #333;
  margin: 10px 0;
}

.feature-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}



.about-section {
  background-color: #f5f7fa;
  padding: 60px 20px;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-image {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1 1 300px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 15px;
}
