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

:root{
  --bg:#f7f3eb;
  --bg-soft:#fffdf9;
  --surface:#ffffff;
  --surface-2:#f2ece1;
  --text:#1f2937;
  --muted:#6b7280;
  --primary:#c89b3c;
  --primary-dark:#a57c28;
  --white:#ffffff;
  --line:rgba(31,41,55,.10);
  --shadow:0 14px 40px rgba(15,23,42,.08);
  --radius:22px;
  --transition:all .35s ease;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(1200px, calc(100% - 80px));
  margin:0 auto;
}


/* =========================
   NAVBAR
   ========================= */
.navbar{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
  min-width:max-content;
}

.brand-mark{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:transparent;
  border-radius:0;
  box-shadow:none;
}

.brand-mark img{
  width:80px;
  height:80px;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.brand-text strong{
  font-size:17px;
  line-height:1.1;
  letter-spacing:.01em;
  color:#111827;
}

.brand-text span{
  font-size:12px;
  line-height:1.1;
  margin-top:5px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
}

.nav-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  flex:1 1 auto;
  min-width:0;
}

.nav-menu a{
  font-size:15px;
  font-weight:700;
  color:#202020;
  transition:var(--transition);
  white-space:nowrap;
}

.nav-menu a:hover{
  color:var(--primary);
}

.nav-cta{
  padding:13px 22px;
  border-radius:999px;
  background:var(--primary);
  color:#fff !important;
  box-shadow:0 10px 24px rgba(200,155,60,.22);
}

.nav-cta:hover{
  background:var(--primary-dark);
}

.mobile-toggle{
  display:none;
  width:44px;
  border:none;
  background:none;
  cursor:pointer;
}

.mobile-toggle span{
  display:block;
  width:100%;
  height:2px;
  margin:7px 0;
  background:#1f2937;
  border-radius:999px;
}

/* =========================
   HERO
   ========================= */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#0f172a;
}

.hero-slider,
.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.03);
  transition:opacity 1s ease;
}

.hero-slide.active{
  opacity:1;
}

.hero-overlay{
  z-index:1;
  background:
    linear-gradient(90deg, rgba(7,11,22,.84) 0%, rgba(7,11,22,.62) 45%, rgba(7,11,22,.34) 100%),
    linear-gradient(180deg, rgba(7,11,22,.14), rgba(7,11,22,.54));
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  padding:90px 0 110px;
  margin-left: 120px;
}

.eyebrow,
.section-tag,
.panel-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(200,155,60,.45);
  background:rgba(200,155,60,.10);
  color:#e6bc66;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hero-copy{
  padding-left:200px;
}
.hero-content{
  padding:90px 40px 110px;
}
.hero-copy h1{
  margin-top:18px;
  max-width:760px;
  font-size:clamp(42px, 6vw, 74px);
  line-height:1.02;
  letter-spacing:-.04em;
  color:#ffffff;
  font-weight:800;
}

.hero-copy p{
  margin-top:22px;
  max-width:720px;
  font-size:18px;
  color:rgba(255,255,255,.88);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 28px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  transition:var(--transition);
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 12px 28px rgba(200,155,60,.24);
}

.btn-primary:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
}

.btn-secondary{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.16);
  color:#fff;
}

.btn-secondary:hover{
  background:rgba(255,255,255,.16);
}

.hero-panel{
  justify-self:end;
  width:100%;
  max-width:430px;
  padding:32px;
  border-radius:30px;
  background:rgba(10,21,40,.72);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 60px rgba(0,0,0,.25);
  backdrop-filter:blur(16px);
}

.hero-panel h3{
  margin-top:18px;
  font-size:28px;
  line-height:1.2;
  color:#fff;
}

.hero-panel ul{
  list-style:none;
  margin-top:20px;
  display:grid;
  gap:14px;
}

.hero-panel li{
  position:relative;
  padding-left:22px;
  color:rgba(255,255,255,.86);
}

.hero-panel li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--primary);
}

.hero-controls{
  position:absolute;
  left:50%;
  bottom:32px;
  transform:translateX(-50%);
  z-index:2;
}

.hero-dots{
  display:flex;
  gap:10px;
}

.dot{
  width:13px;
  height:13px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.34);
  cursor:pointer;
  transition:var(--transition);
}

.dot.active{
  width:34px;
  border-radius:999px;
  background:var(--primary);
}

/* =========================
   HERO MOBİL DÜZEN
   ========================= */
@media (max-width: 768px){

  .hero{
    min-height: auto;
  }

  .hero-content{
    display: block;
    padding: 56px 20px 72px;
    margin-left: 0;
  }

  .hero-copy{
    padding-left: 0;
    max-width: 100%;
  }

  .eyebrow{
    font-size: 10px;
    line-height: 0.5;
    letter-spacing: .12em;
    padding: 10px 15px;
    max-width: 100%;
    white-space: normal;
    margin-left: 20px;
  }

  .hero-copy h1{
    margin-top: 18px;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -.04em;
    max-width: 100%;
    margin-left: 20px;
  }

  .hero-copy p{
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
    max-width: 100%;
    margin-left: 20px;

  }

  .hero-actions{
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    margin-left: 20px;

  }

  .btn{
    max-width: 250px;
    min-height: 40px;
    margin-left: 40px;
  
  }
}
/* =========================
   STATS
   ========================= */
.stats{
  margin-top:-52px;
  position:relative;
  z-index:3;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.stat-card strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:var(--primary);
}

.stat-card span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-weight:700;
}

  
@media (max-width:768px){

  .stats-grid{
    grid-template-columns: repeat(2,1fr);
    gap:14px;
  }

  .stat-card{
    padding:16px; /* mobilde daha da kompakt */
  }

  .stat-card strong{
    font-size:22px;
  }

  .stat-card span{
    font-size:13px;
  }
}
/* =========================
   SECTIONS
   ========================= */
.section{
  padding:100px 0;

}

.section-dark{
  background:var(--surface-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-heading{
  max-width:760px;
  margin-bottom:42px;
}

.section-heading.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.section-heading h2{
  margin-top:18px;
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.12;
  letter-spacing:-.03em;
  color:#111827;
}

.section-heading p{
  margin-top:18px;
  color:var(--muted);
  font-size:17px;
}
@media (max-width: 768px) {

  .section {
    padding: 60px 0; /* 100 → 60 */
  }

  .section-heading {
    margin-bottom: 24px; /* 42 → 24 */
  }

  .section-heading h2 {
    font-size: 28px; /* daha kompakt */
    line-height: 1.2;
  }

  .section-heading p {
    margin-top: 12px;
    font-size: 15px;
  }

}
/* =========================
   ABOUT
   ========================= */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.info-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  min-height:200px;
  box-shadow:var(--shadow);
}

.info-card h3{
  font-size:22px;
  line-height:1.25;
  color:#111827;
}

.info-card p{
  margin-top:14px;
  color:var(--muted);
}
.kurumsal-heading,
.kurumsal-heading h2,
.kurumsal-heading p {
  text-align: left !important;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .kurumsal-heading,
  .kurumsal-heading h2,
  .kurumsal-heading p {
    text-align: center !important;
  }

  .kurumsal-heading .section-tag {
    display: table;
    margin: 0 auto;
  }

  .kurumsal-heading h2 {
    font-size: 2.5rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .kurumsal-heading p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .about-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .info-card {
    padding: 22px;
    min-height: 180px;
  }

  .info-card h3 {
    font-size: 1.15rem;
  }

  .info-card p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.65;
  }
}
@media (max-width: 768px) {
  .about-cards .info-card:nth-child(n+3) {
    display: none;
  }
}
/* =========================
   SERVICES
   ========================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(200,155,60,.34);
}

.service-card h3{
  font-size:22px;
  line-height:1.25;
  color:#111827;
}

.service-card p{
  margin-top:14px;
  color:var(--muted);
}
@media (max-width: 768px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: stretch;
  }

  .service-card{
    padding: 20px 18px;
    border-radius: 18px;
  }

  .service-card h3{
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -.01em;
  }

  .service-card p{
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
  }

  /* 3. kart alta geçsin ama yatay uzasın */
  .service-card:nth-child(3){
    grid-column: 1 / -1;
  }
  .section-heading h2{
    font-size: 42px;
    line-height: 1.08;
  }

  .section-heading p{
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================
   PROJECTS
   ========================= */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.project-card{
  overflow:hidden;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.project-card:hover{
  transform:translateY(-4px);
  border-color:rgba(200,155,60,.34);
}

.project-card img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.project-content{
  padding:24px;
}

.project-content span{
  color:var(--primary);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
}

.project-content h3{
  margin-top:12px;
  font-size:24px;
  color:#111827;
}

.project-content p{
  margin-top:10px;
  color:var(--muted);
}
@media (max-width: 768px){

  .projects-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-card{
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15,23,42,.06);
  }

  .project-card img{
    height: 200px; /* 300 → 200 düşürdük */
  }

  .project-content{
    padding: 16px;
  }

  .project-content span{
    font-size: 11px;
    letter-spacing: .1em;
  }

  .project-content h3{
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
  }

  .project-content p{
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
  }

}
.section-heading{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.section-heading h2{
  text-align:center;
}

.section-heading p{
  text-align:center;
  max-width:720px;
}

.section-heading .section-tag{
  display:inline-flex;
  justify-content:center;
}

@media (max-width: 768px){
  .section-heading p{
    max-width:320px;
  }
}
.project-card{
  display:block; /* önemli */
  text-decoration:none; /* link çizgisi gider */
  color:inherit; /* yazı rengi bozulmaz */
}
/* =========================
   GALLERY / MINIMAL PREMIUM
   ========================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  height: 310px;
}

.gallery-card{
  display:block;
  background:#fffdf9;
  border:1px solid rgba(17,24,39,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.gallery-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(15,23,42,.08);
  border-color:rgba(200,155,60,.25);
}

.gallery-image-wrap{
  aspect-ratio: 4 / 3;
  overflow:hidden;
  background:#ece7dd;
}

.gallery-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.gallery-card:hover .gallery-image-wrap img{
  transform:scale(1.04);
}

.gallery-content{
  padding:16px 16px 18px;
}

.gallery-content span{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#b88a2d;
}

.gallery-content h3{
  margin-top:8px;
  font-size:20px;
  line-height:1.2;
  color:#111827;
  font-weight:800;
}

/* mobil */
@media (max-width:768px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    height: 430px;

  }

  .gallery-card{
    border-radius:18px;
  }

  .gallery-content{
    padding:12px 12px 14px;
  }

  .gallery-content span{
    font-size:9px;
    letter-spacing:.1em;
  }

  .gallery-content h3{
    margin-top:6px;
    font-size:15px;
    line-height:1.2;
  }
}
/* =========================
   CONTACT + MAP
   ========================= */
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;
}

.contact-box{
  display:flex;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-info{
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  padding:24px;
}

.contact-left .section-tag{
  transform:translateY(10px);
}

.contact-left h2{
  margin-top:42px;
  font-size:22px;
  line-height:1.25;
  color:#111827;
}

.contact-right{
  display:flex;
  align-items:center;
}

.contact-list{
  width:100%;
}

.contact-item{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.contact-item strong{
  display:block;
  font-size:15px;
  color:#111827;
}

.contact-item span{
  display:block;
  margin-top:6px;
  color:var(--muted);
}

.contact-map-inner{
  width:100%;
  height:100%;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}

.map-panel{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:420px;
  border-radius:22px;
  overflow:hidden;
  background:#0a0a0a;
}

.map-bg{
  width:100%;
  height:100%;
  min-height:350px;
  background:
    linear-gradient(rgba(0,0,0,.26), rgba(0,0,0,.46)),
    url("harita.jpg") center center / cover no-repeat;
  transition:transform .6s ease;
}

.map-panel:hover .map-bg{
  transform:scale(1.04);
}

.map-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  pointer-events:none;
}

.map-pin{
  width:18px;
  height:18px;
  border-radius:50%;
  background:#ff6b6b;
  box-shadow:0 0 0 8px rgba(255,107,107,.22);
  margin-bottom:14px;
}

.map-overlay p{
  font-size:15px;
  letter-spacing:1px;
  margin-bottom:8px;
}

.map-overlay span{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:rgba(255,255,255,.72);
}


/* FOOTER */
.footer {
  background: #fffdf8;
  color: rgba(75, 75, 75, 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;
  color: #7c6b48;
}

.footer a:hover {
  opacity: 0.7;
  color: #6a807e;
}
@media (max-width: 768px) {
  .footer p {
    line-height: 1.6;
  }

  .footer .tag-link {
    display: block;
    margin-top: 6px;
  }
}
/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1100px){
  .hero-content,
  .about-grid,
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .hero-copy{
    padding-left:0;
  }

  .hero-panel{
    justify-self:start;
    max-width:100%;
    margin-right:0;
  }

  .services-grid,
  .projects-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .contact-info{
    grid-template-columns:1fr;
  }
}

/* =========================
   MOBILE TOGGLE BUTTON
   ========================= */
/* =========================
   HAMBURGER BUTTON
   ========================= */
.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;
}

/* Desktop menu */
.nav-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  flex:1 1 auto;
}

.nav-links a{
  color:#1f2937;
  font-size:15px;
  font-weight:700;
  transition:.3s;
  white-space:nowrap;
}

.nav-links a:hover{
  color:var(--primary);
}

.nav-links .nav-btn{
  padding:12px 20px;
  border-radius:999px;
  background:var(--primary);
  color:#fff !important;
}

/* =========================
   MOBİL MENÜ
   ========================= */
@media (max-width: 768px) {
  .topbar{
    display:none;
  }

  .nav-inner {
    min-height: 72px;
    gap: 10px;
    flex-wrap: nowrap;
    position: relative;
  }

  .brand{
    gap:10px;
  }

  .brand-mark{
    width:40px;
    height:40px;
  }

  .brand-mark img{
    width:32px;
    height:32px;
  }

  .brand-text strong{
    font-size:15px;
  }

  .brand-text span{
    font-size:11px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    color: #333;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;

    z-index: 1003;

    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: 600;
    letter-spacing: 0.2px;
    text-align: center;
    transition: 0.3s;
  }

  .nav-links a:hover {
    opacity: 0.7;
  }

  .nav-links .nav-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1rem;
  }

  .nav-links .nav-btn:hover {
    background: var(--primary-dark);
    transform: none;
    opacity: 1;
  }

  .navbar.menu-open {
    background: #fff;
  }

  .navbar.menu-open .menu-toggle {
    color: #222;
  }
}
/* hizmetler kısmı */
@media (max-width: 768px){
  /* Mobilde kutular 2'li */
  .stats-grid,
  .about-cards,
  .services-grid,
  .projects-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-box{
    display:block;
  }

  .contact-map-inner{
    min-height:320px;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 24px, 1200px);
  }

  .hero-copy h1{
    font-size:clamp(34px, 9vw, 56px);
  }

  .hero-copy p,
  .section-heading p{
    font-size:15px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .stat-card,
  .info-card,
  .service-card,
  .project-content,
  .process-card,
  .contact-box,
  .contact-info{
    padding:22px;
  }

  .brand{
    gap:10px;
  }

  .brand-mark{
    width:40px;
    height:40px;
  }

  .brand-mark img{
    width:32px;
    height:32px;
  }
}
/* 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;
  }
}