:root {
  --primary: #1f1f1f;
  --secondary: #b08d57;
  --light: #f7f5f2;
  --white: #ffffff;
  --text: #4d4d4d;
  --heading: #151515;
  --border: #e7e2da;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 18px;
  --transition: 0.35s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-bg {
  background: #fcfbf9;
}

.section-title {
  text-align: center;
  margin-bottom: 18px;
  color: var(--heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
  color: #6c6c6c;
  font-size: 1rem;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 1004;
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.96rem;
  font-weight: 600;
  color: #333;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-btn:hover {
  background: #96713e;
  transform: translateY(-2px);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  position: relative;
  z-index: 1004;
}

/* MOBİL */
@media (max-width: 768px) {
  .nav-inner {
    min-height: 72px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .logo img {
    height: 34px;
    max-width: 190px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    color: #333;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;

    z-index: 1003;

    /* 🔥 ANİMASYON */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: all 0.4s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  

  .nav-links a {
    color: #222;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
  }
  .nav-links a:hover {
    opacity: 0.6;
  }
  .nav-links .nav-btn {
    background: var(--secondary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
  }

  .nav-links .nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: none;
  }

  .navbar.menu-open {
    background: #fff;
  }

  .navbar.menu-open .menu-toggle {
    color: #222;
  }
  .nav-links .nav-btn {
    padding: 10px 18px !important;
    font-size: 0.9rem !important;
  }
}
/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(16,16,16,0.55), rgba(16,16,16,0.55)),
    url('https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: #96713e;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.1rem;
  color: var(--heading);
  margin-bottom: 18px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.stat-box p {
  color: #666;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .stat-box {
    padding: 20px 14px;
  }

  .stat-box h3 {
    font-size: 1.4rem;
  }

  .stat-box p {
    font-size: 0.85rem;
  }
}
/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(176,141,87,0.12);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: bold;
}

.service-card h3 {
  color: var(--heading);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.97rem;
  color: #666;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    padding: 18px 16px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-image {
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 26px;
}

.project-tag {
  display: inline-block;
  background: rgba(176,141,87,0.12);
  color: var(--secondary);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-content h3 {
  color: var(--heading);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.project-content p {
  color: #666;
  margin-bottom: 18px;
}

/* MOBİL */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .project-image {
    height: 220px;
  }

  .project-content {
    padding: 22px;
  }

  .project-tag {
    padding: 4px 9px;
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .project-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .project-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .project-content .btn {
    padding: 11px 20px;
    font-size: 0.9rem;
  }
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .gallery-item {
    min-height: 140px;
    border-radius: 12px;
  }
  
}
/* FAQ */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--heading);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: #666;
  font-size: 0.97rem;
}
@media (max-width: 768px) {
  .faq-item:nth-child(n+4) {
    display: none;
  }
}
/* CONTACT */
.contact-full {
  display: flex;
  justify-content: center;
}

.contact-box {
  width: 100%;
  max-width: 900px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-box h3 {
  margin-bottom: 25px;
  font-size: 1.6rem;
  color: var(--heading);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row strong {
  color: #111;
  min-width: 160px;
}

.contact-row span,
.contact-row a {
  color: #555;
  text-align: right;
}

/* FOOTER */
.footer {
  background: #121212;
  color: rgba(255,255,255,0.8);
  padding: 28px 0;
  text-align: center;
  margin-top: 40px;
}

.footer p {
  font-size: 0.95rem;
}
.footer a {
  color: var(--secondary);
  font-weight: 600;
  transition: 0.3s;
}

.footer a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer p {
    line-height: 1.6;
  }

  .footer .tag-link {
    display: block;
    margin-top: 6px;
  }
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .services-grid,
  .gallery-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: center;
    gap: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card,
  .faq-item,
  .project-content,
  .contact-box {
    padding: 22px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-row span,
  .contact-row a {
    text-align: left;
  }
}
/* PROJECT DETAIL (projeler.html için) */

.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.project-detail-grid.reverse {
  direction: rtl;
}

.project-detail-grid.reverse > * {
  direction: ltr;
}

.project-detail-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.project-detail-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.project-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  background: var(--white);
}

.project-gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
}

.project-gallery img:hover {
  transform: scale(1.05);
}

.project-detail-content {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 34px;
}

.project-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--heading);
}

.project-detail-content p {
  margin-bottom: 15px;
  color: #666;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.feature-item {
  background: #f8f6f3;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

/* MOBİL */
@media (max-width: 900px) {
  .project-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-detail-image {
    height: 280px;
  }

  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feature-item {
    font-size: 0.85rem;
    padding: 12px;
  }
}
.project-gallery-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.project-gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.project-gallery-track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
}

.project-gallery-track img {
  width: calc((100% - 30px) / 4);
  min-width: calc((100% - 30px) / 4);
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
}

.project-gallery-track img:hover {
  transform: scale(1.04);
}

.gallery-arrow {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(176,141,87,0.14);
  color: var(--secondary);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}

.gallery-arrow:hover {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 900px) {
  .project-gallery-track img {
    width: calc((100% - 10px) / 2);
    min-width: calc((100% - 10px) / 2);
    height: 72px;
  }

  .gallery-arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .project-meta span {
    border-radius: 999px;
  white-space: nowrap;
  }
}
@media (max-width: 900px) {
  .project-meta {
    gap: 8px;
    margin: 0 0 18px;
  }

  .project-meta span {
    font-size: 0.72rem;
    padding: 6px 10px;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-item {
    font-size: 0.85rem;
    padding: 12px;
  }

  .feature-item:nth-child(n+5) {
    display: none;
  }
}