/* assets/css/style.css */

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

html, body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  font-family:Arial, sans-serif;
  background:#fff;
  color:#111;
}

.container{
  width:min(1400px, calc(100% - 40px));
  margin:auto;
}

img{
  max-width:100%;
}

/* =========================
   HEADER
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  background:#fff;
  border-bottom:1px solid #eee;
  box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.header-wrapper{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
  flex-shrink:0;
}

.logo img{
  height:68px;
  width:auto;
  display:block;
}

.menu > ul{
  display:flex;
  align-items:center;
  gap:26px;
  list-style:none;
}

.menu a{
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:700;
  transition:.3s;
}

.menu a:hover{
  color:#d6a24a;
}

.has-dropdown{
  position:relative;
}

.dropdown{
  position:absolute;
  top:100%;
  left:0;
  width:245px;
  background:#fff;
  list-style:none;
  padding:12px;
  border-radius:0 0 18px 18px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:.3s;
}

.has-dropdown:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown li a{
  padding:12px 14px;
  border-radius:12px;
  font-size:14px;
}

.dropdown li a:hover{
  background:#faf7f2;
}

.header-phone{
  display:flex;
  align-items:center;
  gap:12px;
  padding:0;
  background:transparent;
  border-radius:0;
  text-decoration:none;
  white-space:nowrap;
  box-shadow:none;
}

.phone-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#d6a24a;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.phone-icon i{
  color:#fff;
  font-size:24px;
}

.phone-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.phone-text span{
  color:#555;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
}

.phone-text strong{
  color:#111;
  font-size:34px;
  font-weight:900;
}

.mobile-menu-btn{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:12px;
  background:#111;
  color:#fff;
  font-size:22px;
}

/* =========================
   HERO
========================= */
.hero{
  background:#0f0f0f;
  padding:90px 0;
  overflow:hidden;
}

.hero-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-content{
  flex:1;
}

.hero-badge{
  display:block;
  color:#d6a24a;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.hero h1{
  font-size:64px;
  color:#fff;
  line-height:1.1;
  margin:0 0 20px;
}

.hero h1 span{
  color:#d6a24a;
}

.hero p{
  color:#ddd;
  font-size:18px;
  line-height:1.7;
  max-width:650px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:35px;
}

.btn{
  padding:16px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
}

.hero-btn{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:230px;
  justify-content:flex-start;
}

.hero-btn i{
  font-size:30px;
}

.hero-btn span{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.hero-btn strong{
  font-size:15px;
  font-weight:900;
}

.hero-btn small{
  font-size:13px;
  font-weight:500;
  opacity:.9;
}

.hero-btn.whatsapp{
  background:#25d366;
  color:#fff;
  border:0;
}

.hero-btn.phone{
  background:transparent;
  border:2px solid #d6a24a;
  color:#fff;
}

.hero-features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  margin-top:45px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
}

.feature-item i{
  color:#d6a24a;
  font-size:34px;
  min-width:38px;
}

.feature-item div{
  display:flex;
  flex-direction:column;
  line-height:1.25;
}

.feature-item strong{
  font-size:18px;
  font-weight:900;
}

.feature-item small{
  margin-top:4px;
  color:#ddd;
  font-size:15px;
}

.hero-image img{
  width:700px;
  max-width:100%;
}

/* =========================
   GÜVEN ALANI
========================= */
.trust-area{
  padding:70px 0;
  background:#faf7f2;
}

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

.trust-box{
  background:#fff;
  padding:35px;
  border-radius:20px;
  text-align:center;
}

.trust-box i{
  font-size:40px;
  color:#d6a24a;
  margin-bottom:18px;
}

.trust-box h3{
  margin-bottom:10px;
}

.trust-box p{
  font-size:16px;
  line-height:1.6;
  color:#666;
}

/* =========================
   ORTAK BAŞLIK
========================= */
.section-title{
  text-align:center;
  margin-bottom:55px;
}

.section-title span{
  display:block;
  color:#d6a24a;
  font-weight:800;
  font-size:18px;
  letter-spacing:1px;
  margin-bottom:14px;
  text-transform:uppercase;
}

.section-title h2{
  font-size:58px;
  font-weight:900;
  line-height:1.15;
  position:relative;
  display:inline-block;
  padding-bottom:28px;
  margin:0;
}

.section-title h2::after{
  content:"◈";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  color:#d6a24a;
  font-size:20px;
  background:#fff;
  padding:0 12px;
}

.section-title h2::before{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:11px;
  width:160px;
  height:2px;
  background:#d6a24a;
}

/* =========================
   HİZMETLER
========================= */
.services{
  padding:80px 0 90px;
  background:#fff;
}

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

.service-card{
  position:relative;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-align:center;
  border:1px solid #eee;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-7px);
  box-shadow:0 18px 45px rgba(0,0,0,.14);
}

.service-img{
  height:155px;
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.service-icon{
  width:56px;
  height:56px;
  margin:-28px auto 14px;
  background:#111;
  border:5px solid #fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.service-icon i{
  color:#d6a24a;
  font-size:22px;
}

.service-content{
  padding:0 14px 24px;
}

.service-content h3{
  font-size:20px;
  line-height:1.25;
  font-weight:900;
  text-transform:uppercase;
  margin:0 0 16px;
}

.service-content a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#d6a24a;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}

/* =========================
   YORUMLAR
========================= */
.reviews{
  background:#050505;
  padding:65px 0;
  color:#fff;
}

.reviews-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:22px;
  align-items:stretch;
}

.reviews-left{
  padding-right:10px;
}

.reviews-left h2{
  font-size:42px;
  line-height:1.08;
  font-weight:900;
  margin-bottom:18px;
}

.reviews-left h2 span{
  color:#d6a24a;
}

.reviews-left p{
  color:#ccc;
  font-size:16px;
  line-height:1.7;
  margin-bottom:26px;
}

.google-logo{
  font-size:30px;
  font-weight:900;
  margin-bottom:12px;
}

.rating-score{
  font-size:38px;
  font-weight:900;
  margin-bottom:8px;
}

.google-rating small{
  color:#ccc;
  font-size:14px;
}

.review-card{
  position:relative;
  background:linear-gradient(145deg,#171717,#0f0f0f);
  border-radius:22px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}

.review-stars{
  color:#f7b731;
  font-size:18px;
  margin-bottom:16px;
}

.review-card p{
  color:#eee;
  font-size:15px;
  line-height:1.8;
  margin-bottom:22px;
}

.review-card strong{
  display:block;
  font-size:17px;
  margin-bottom:4px;
}

.review-card span{
  color:#aaa;
  font-size:14px;
}

.review-google{
  position:absolute;
  right:20px;
  bottom:18px;
}

.review-google i{
  font-size:32px;
  color:#4285F4;
}

.reviews-bottom{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr 2fr;
  gap:18px;
}

.review-stat{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 22px;
  border:1px solid rgba(214,162,74,.35);
  border-radius:16px;
  background:#0d0d0d;
}

.review-stat i{
  font-size:30px;
  color:#d6a24a;
}

.review-stat strong{
  display:block;
  font-size:28px;
  font-weight:900;
}

.review-stat span{
  color:#ccc;
  font-size:14px;
}

.reviews-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:#d6a24a;
  color:#111;
  text-decoration:none;
  border-radius:16px;
  padding:20px 28px;
}

.reviews-cta strong{
  display:block;
  font-size:24px;
  font-weight:900;
  margin-bottom:5px;
}

.reviews-cta span{
  font-size:15px;
}

.reviews-cta i{
  font-size:28px;
}

/* =========================
   GALERİ
========================= */
.gallery-section{
  padding:85px 0;
  background:#fff;
}

.gallery-wrapper{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:28px;
  align-items:center;
}

.gallery-text span,
.districts-text span{
  display:block;
  color:#111;
  font-size:20px;
  margin-bottom:8px;
}

.gallery-text h2,
.districts-text h2{
  font-size:58px;
  line-height:1.05;
  font-weight:900;
  color:#d6a24a;
  margin-bottom:18px;
}

.gallery-line,
.districts-line{
  width:60px;
  height:3px;
  background:#d6a24a;
  margin-bottom:28px;
}

.gallery-text p,
.districts-text p{
  color:#555;
  font-size:17px;
  line-height:1.8;
  margin-bottom:30px;
}

.gallery-btn,
.districts-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 28px;
  border:2px solid #d6a24a;
  border-radius:14px;
  text-decoration:none;
  color:#d6a24a;
  font-weight:800;
  transition:.3s;
}

.gallery-btn:hover,
.districts-btn:hover{
  background:#d6a24a;
  color:#fff;
}

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

.gallery-item{
  border-radius:18px;
  overflow:hidden;
  height:260px;
  position:relative;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.gallery-item:hover img{
  transform:scale(1.06);
}

/* =========================
   İLÇELER
========================= */
.districts{
  padding:85px 0;
  background:#faf7f2;
}

.districts-wrapper{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:28px;
  align-items:center;
}

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

.district-card{
  position:relative;
  height:220px;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.district-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.4s;
}

.district-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.78));
  z-index:1;
}

.district-card:hover img{
  transform:scale(1.06);
}

.district-center{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
}

.district-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#d6a24a;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}

.district-icon i{
  color:#fff;
  font-size:18px;
}

.district-center h3{
  font-size:24px;
  font-weight:900;
  margin-bottom:4px;
  text-transform:uppercase;
}

.district-center p{
  color:#fff;
  font-size:15px;
  font-weight:600;
}

/* =========================
   CTA
========================= */
.big-cta{
  padding:70px 0;
  background:#111;
  color:#fff;
}

.cta-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.big-cta h2{
  font-size:36px;
  margin-bottom:12px;
}

.big-cta p{
  color:#ccc;
}

.cta-buttons{
  display:flex;
  gap:18px;
}

/* =========================
   FOOTER
========================= */
.footer-contact-bar{
  background:#111;
  padding:28px 0 0;
}

.footer-contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid rgba(214,162,74,.35);
  border-radius:18px;
  overflow:hidden;
  background:#151515;
}

.footer-contact-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:28px 20px;
  color:#fff;
  text-decoration:none;
  border-right:1px solid rgba(214,162,74,.35);
}

.footer-contact-item:last-child{
  border-right:0;
}

.footer-contact-item i{
  width:54px;
  height:54px;
  border-radius:14px;
  background:#d6a24a;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.footer-contact-item strong{
  display:block;
  font-size:18px;
  font-weight:900;
}

.footer-contact-item span{
  color:#ddd;
  font-size:15px;
}

.site-footer{
  background:#111;
  color:#fff;
  padding:55px 0 0;
}

.footer-wrapper{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.2fr;
  gap:35px;
  padding-bottom:35px;
}

.footer-logo-area img{
  height:72px;
  margin-bottom:18px;
}

.footer-logo-area p{
  color:#ccc;
  line-height:1.7;
  font-size:15px;
}

.footer-links h3,
.footer-info h3{
  font-size:20px;
  margin-bottom:18px;
  color:#d6a24a;
}

.footer-links a{
  display:block;
  color:#ddd;
  text-decoration:none;
  margin-bottom:10px;
  font-size:15px;
}

.footer-links a:hover{
  color:#d6a24a;
}

.footer-info p{
  color:#ddd;
  margin-bottom:12px;
  font-size:15px;
}

.footer-info i{
  color:#d6a24a;
  margin-right:8px;
}

.footer-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:25px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-tags a{
  padding:9px 14px;
  border:1px solid rgba(214,162,74,.35);
  border-radius:999px;
  color:#ddd;
  text-decoration:none;
  font-size:14px;
}

.footer-tags a:hover{
  background:#d6a24a;
  color:#111;
}

.footer-copy{
  text-align:center;
  padding:18px 10px;
  background:#0a0a0a;
  color:#aaa;
  font-size:14px;
}

/* =========================
   MOBİL SABİT BAR
========================= */
.mobile-fixed-bar{
  display:none;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1200px){
  .service-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .reviews-grid{
    grid-template-columns:1fr 1fr;
  }

  .reviews-bottom{
    grid-template-columns:1fr;
  }
}

@media(max-width:992px){
  .trust-grid,
  .gallery-grid,
  .district-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-wrapper,
  .districts-wrapper{
    grid-template-columns:1fr;
  }

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

  .footer-contact-item{
    justify-content:flex-start;
    border-right:0;
    border-bottom:1px solid rgba(214,162,74,.35);
  }

  .footer-contact-item:last-child{
    border-bottom:0;
  }
}

@media(max-width:768px){
  .container{
    width:100%;
    padding-left:20px;
    padding-right:20px;
  }
  
  

  .site-header{
    position:sticky;
    top:0;
  }

  .header-wrapper{
    min-height:72px;
    gap:12px;
  }

  .logo img{
    height:42px;
  }

  .mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
    flex-shrink:0;
  }

  .header-phone{
    display:none;
  }

  .menu{
    display:none;
    position:absolute;
    top:72px;
    left:20px;
    right:20px;
    background:#fff;
    border-radius:0 0 20px 20px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    padding:15px;
    z-index:9999;
  }

  .menu.active{
    display:block;
  }

  .menu > ul{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    list-style:none;
  }

  .menu > ul > li{
    border-bottom:1px solid #eee;
  }

  .menu > ul > li:last-child{
    border-bottom:0;
  }

  .menu a{
    padding:14px 8px;
    display:flex;
    justify-content:space-between;
    color:#111;
    text-decoration:none;
    font-weight:800;
  }

  .dropdown{
    position:static;
    width:100%;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    padding:0 0 10px 12px;
    display:block;
  }

  .dropdown li a{
    background:#faf7f2;
    margin-bottom:6px;
    border-radius:10px;
    padding:11px 12px;
    font-size:14px;
  }

  .hero{
    padding:55px 0;
  }

  .hero-wrapper{
    display:block;
  }

  .hero h1{
    font-size:46px;
    line-height:1.1;
    max-width:100%;
  }

  .hero p{
    font-size:18px;
    line-height:1.7;
    max-width:100%;
  }

  .hero-image{
    display:none;
  }

  .hero-buttons{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .hero-btn{
    width:100%;
    min-width:0;
    justify-content:center;
  }

  .hero-features{
    grid-template-columns:1fr;
    gap:20px;
  }

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

  .trust-box{
    padding:28px 16px;
  }

  .section-title h2{
    font-size:38px;
  }

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

  .service-img{
    height:130px;
  }

  .service-content h3{
    font-size:18px;
  }

  .reviews-grid{
    grid-template-columns:1fr;
  }

  .reviews-left h2{
    font-size:34px;
  }

  .gallery-grid,
  .district-grid{
    grid-template-columns:1fr;
  }

  .gallery-text h2,
  .districts-text h2{
    font-size:40px;
  }

  .district-card{
    height:210px;
  }

  .big-cta,
  .footer-contact-bar{
    display:none;
  }

  .mobile-fixed-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    background:#111;
    box-shadow:0 -5px 20px rgba(0,0,0,.2);
  }

  .mobile-fixed-bar a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:14px 10px;
    text-align:center;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
  }

  .mobile-fixed-bar a i{
    font-size:20px;
  }

  .mobile-fixed-bar a:first-child{
    background:#25d366;
  }

  .mobile-fixed-bar a:nth-child(2){
    background:#111;
    color:#fff;
  }

  .mobile-fixed-bar a:last-child{
    background:#d6a24a;
    color:#111;
  }

  body{
    padding-bottom:64px;
  }
}

  /* MOBİL DROPDOWN */
  .has-dropdown .dropdown{
    display:none;
  }

  .has-dropdown.open .dropdown{
    display:block;
  }

  .has-dropdown.open > a i{
    transform:rotate(180deg);
  }

}
/* PAGE HERO */

.page-hero{
  padding:90px 0;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url("../img/page-bg.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  text-align:center;
}

.page-hero span{
  color:#d6a24a;
  font-weight:800;
  letter-spacing:1px;
}

.page-hero h1{
  font-size:58px;
  margin:16px 0;
}

.page-hero p{
  max-width:760px;
  margin:0 auto;
  color:#ddd;
  font-size:18px;
  line-height:1.7;
}

/* SERVICES PAGE */

.services-page{
  padding:90px 0;
  background:#faf7f2;
}

.service-list{
  display:grid;
  gap:28px;
}

.service-wide-card{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:34px;
  align-items:center;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  text-decoration:none;
  color:#111;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
}

.service-wide-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(0,0,0,.13);
}

.service-wide-card img{
  width:100%;
  height:270px;
  object-fit:cover;
}

.service-wide-card div{
  padding:25px 35px 25px 0;
}

.service-wide-card span{
  color:#d6a24a;
  font-weight:800;
  font-size:14px;
}

.service-wide-card h2{
  font-size:34px;
  margin:10px 0 14px;
}

.service-wide-card p{
  color:#555;
  line-height:1.7;
  margin-bottom:18px;
}

.service-wide-card strong{
  color:#111;
}

/* MOBILE SERVICE PAGE */

@media(max-width:768px){

  .page-hero{
    padding:65px 0;
  }

  .page-hero h1{
    font-size:38px;
  }

  .service-wide-card{
    grid-template-columns:1fr;
  }

  .service-wide-card img{
    height:230px;
  }

  .service-wide-card div{
    padding:26px;
  }

  .service-wide-card h2{
    font-size:28px;
  }

}
.services-card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.service-detail-card{
  background:#fff;
  border-radius:0;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.service-detail-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.service-detail-content{
  padding:32px;
}

.service-detail-content h2{
  font-size:28px;
  line-height:1.25;
  margin-bottom:18px;
  font-weight:900;
  text-transform:uppercase;
}

.service-detail-content p{
  color:#666;
  font-size:16px;
  line-height:1.8;
  margin-bottom:28px;
}

.service-detail-content a{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 22px;
  border:2px solid #d6a24a;
  color:#d6a24a;
  text-decoration:none;
  font-weight:900;
  transition:.3s;
}

.service-detail-content a:hover{
  background:#d6a24a;
  color:#fff;
}

@media(max-width:1200px){
  .services-card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .services-card-grid{
    grid-template-columns:1fr;
  }

  .service-detail-card img{
    height:230px;
  }
}

/* HİZMET DETAY SAYFASI */

.service-detail-hero{
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.65), rgba(0,0,0,.15)),
    url("../img/tavuklu-pilav.png");
  background-size:cover;
  background-position:center right;
  color:#fff;
  padding:90px 0;
}

.service-detail-hero-text{
  max-width:620px;
}

.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
  color:#ccc;
  font-size:14px;
}

.breadcrumb a{
  color:#ccc;
  text-decoration:none;
}

.service-detail-label{
  display:block;
  color:#d6a24a;
  font-weight:900;
  margin-bottom:14px;
}

.service-detail-hero h1{
  font-size:58px;
  line-height:1.1;
  margin-bottom:22px;
}

.service-detail-hero p{
  font-size:20px;
  line-height:1.7;
  color:#eee;
  margin-bottom:30px;
}

.detail-hero-buttons{
  display:flex;
  gap:14px;
  margin-bottom:32px;
}

.detail-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 24px;
  border-radius:8px;
  text-decoration:none;
  font-weight:900;
}

.detail-btn.whatsapp{
  background:#25d366;
  color:#fff;
}

.detail-btn.call{
  border:1px solid #fff;
  color:#fff;
}

.detail-hero-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:24px;
}

.detail-hero-features div{
  display:flex;
  align-items:center;
  gap:10px;
}

.detail-hero-features i{
  color:#d6a24a;
  font-size:24px;
}

/* İÇERİK */

.service-detail-content-section{
  padding:90px 0;
  background:#faf7f2;
}

.service-detail-content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.service-detail-text span{
  color:#d6a24a;
  font-weight:900;
}

.service-detail-text h2{
  font-size:42px;
  line-height:1.15;
  margin:14px 0 24px;
}

.service-detail-text p{
  color:#555;
  font-size:17px;
  line-height:1.8;
  margin-bottom:25px;
}

.service-detail-text ul{
  list-style:none;
}

.service-detail-text li{
  margin-bottom:13px;
  color:#222;
  font-weight:600;
}

.service-detail-text li i{
  color:#d6a24a;
  margin-right:8px;
}

.service-detail-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* HİZMET ALANLARI */

.service-areas{
  padding:80px 0;
  background:#fff;
}

.small-title h2{
  font-size:36px;
}

.service-area-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}

.service-area-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  padding:32px 18px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-area-card i{
  font-size:38px;
  color:#d6a24a;
  margin-bottom:16px;
}

.service-area-card h3{
  font-size:17px;
}

/* DETAY GALERİ */

.detail-gallery{
  padding:40px 0 80px;
  background:#fff;
}

.detail-gallery h2{
  color:#d6a24a;
  font-size:22px;
  margin-bottom:20px;
  text-transform:uppercase;
}

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

.detail-gallery-grid img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:12px;
}

/* CTA */

.detail-cta{
  background:#fff;
  padding:0 0 80px;
}

.detail-cta-inner{
  background:#080808;
  color:#fff;
  border-radius:14px;
  padding:42px;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:30px;
  align-items:center;
}

.detail-cta span{
  color:#d6a24a;
  font-weight:900;
}

.detail-cta h2{
  font-size:36px;
  text-transform:uppercase;
  margin:8px 0 14px;
}

.detail-cta p{
  color:#ccc;
  line-height:1.7;
}

.detail-cta-buttons{
  display:grid;
  gap:14px;
}

.detail-cta-buttons a{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:900;
}

.detail-cta-buttons a:first-child{
  border:1px solid #d6a24a;
  color:#fff;
}

.detail-cta-buttons a:last-child{
  background:#25d366;
  color:#fff;
}

.detail-guarantee{
  text-align:center;
}

.detail-guarantee i{
  font-size:56px;
  color:#d6a24a;
  margin-bottom:12px;
}

.detail-guarantee strong{
  display:block;
  font-size:20px;
  margin-bottom:8px;
  text-transform:uppercase;
}

/* MOBİL */

@media(max-width:992px){
  .service-detail-content-grid,
  .detail-cta-inner{
    grid-template-columns:1fr;
  }

  .service-area-grid,
  .detail-gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .service-detail-hero{
    padding:65px 0;
    background:
      linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.88)),
      url("../img/tavuklu-pilav.png");
    background-size:cover;
    background-position:center;
  }

  .service-detail-hero h1{
    font-size:38px;
  }

  .detail-hero-buttons,
  .detail-hero-features{
    grid-template-columns:1fr;
    flex-direction:column;
  }

  .service-detail-text h2{
    font-size:32px;
  }

  .service-area-grid,
  .detail-gallery-grid{
    grid-template-columns:1fr;
  }
}

/* SEO İÇERİK ALANI */

.seo-content-section{
  padding:70px 0;
  background:#fff;
}

.seo-content-box{
  max-width:1100px;
  margin:0 auto;
  background:#fff;
  border-radius:18px;
  padding:45px;
  box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.seo-content-box h2{
  font-size:32px;
  margin:28px 0 18px;
  color:#111;
}

.seo-content-box h2:first-child{
  margin-top:0;
}

.seo-content-box p{
  color:#555;
  font-size:17px;
  line-height:1.9;
  margin-bottom:18px;
}

.seo-content-box strong{
  color:#d6a24a;
}

@media(max-width:768px){
  .seo-content-box{
    padding:28px 22px;
  }

  .seo-content-box h2{
    font-size:26px;
  }

  .seo-content-box p{
    font-size:16px;
  }
}

@media(min-width:769px){

  .menu{
    display:block !important;
  }

  .menu > ul{
    display:flex;
    align-items:center;
    gap:26px;
  }

  .has-dropdown{
    position:relative;
  }

  .has-dropdown .dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:245px;
    background:#fff;
    list-style:none;
    padding:12px;
    border-radius:0 0 18px 18px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    z-index:99999;
    display:block !important;
  }

  .has-dropdown:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

}

.hero-tavuklu{
    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/tavuklu-pilav.png");
}

.hero-kavurma{
    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/kavurma-pilav-izmir.png");
}

.hero-mevlit{
    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/izmir-tavuklu-pilav.jpg");
}

.hero-dugun{
    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/izmir-dugun-yemegi.jpg");
}

.hero-lokma{
    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("../img/lokma.png");
}

.hero-tavuklu,
.hero-kavurma,
.hero-mevlit,
.hero-dugun,
.hero-lokma{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* İLÇELER SAYFASI */

.district-page{
  padding:90px 0;
  background:#faf7f2;
}

.district-page-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.district-page-card{
  background:#fff;
  text-decoration:none;
  color:#111;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  transition:.3s;
}

.district-page-card:hover{
  transform:translateY(-7px);
  box-shadow:0 20px 50px rgba(0,0,0,.14);
}

.district-page-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
}

.district-page-content{
  padding:28px;
}

.district-page-content > i{
  width:52px;
  height:52px;
  background:#d6a24a;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:18px;
}

.district-page-content h2{
  font-size:24px;
  margin-bottom:14px;
  font-weight:900;
}

.district-page-content p{
  color:#666;
  line-height:1.7;
  margin-bottom:22px;
}

.district-page-content span{
  color:#d6a24a;
  font-weight:900;
}

@media(max-width:1200px){
  .district-page-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .district-page-grid{
    grid-template-columns:1fr;
  }
}

.hero-karabaglar{
  background:
    linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)),
    url("../img/izmir-tavuk-pilav.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* İLETİŞİM SAYFASI */

.contact-page{
  padding:90px 0;
  background:#faf7f2;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:35px;
  align-items:stretch;
}

.contact-info{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.contact-card{
  background:#fff;
  border-radius:20px;
  padding:28px;
  display:flex;
  gap:18px;
  box-shadow:0 12px 35px rgba(0,0,0,.07);
}

.contact-card > i{
  width:54px;
  height:54px;
  background:#d6a24a;
  color:#111;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex-shrink:0;
}

.contact-card h3{
  font-size:22px;
  margin-bottom:8px;
}

.contact-card p{
  color:#666;
  line-height:1.6;
  margin-bottom:10px;
}

.contact-card a{
  color:#d6a24a;
  font-weight:900;
  text-decoration:none;
}

.contact-form-box{
  background:#111;
  color:#fff;
  border-radius:24px;
  padding:42px;
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}

.contact-form-box span{
  color:#d6a24a;
  font-weight:900;
}

.contact-form-box h2{
  font-size:42px;
  margin:12px 0 28px;
}

.contact-form{
  display:grid;
  gap:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:17px 18px;
  border:1px solid rgba(255,255,255,.12);
  background:#1b1b1b;
  color:#fff;
  border-radius:12px;
  outline:none;
  font-size:15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#aaa;
}

.contact-form button{
  border:0;
  padding:17px 22px;
  border-radius:12px;
  background:#d6a24a;
  color:#111;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

/* HARİTA */

.map-section{
  padding:0 0 90px;
  background:#faf7f2;
}

.map-box{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* MOBİL */

@media(max-width:992px){
  .contact-grid,
  .contact-info{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .contact-page{
    padding:60px 0;
  }

  .contact-card{
    padding:24px;
  }

  .contact-form-box{
    padding:28px;
  }

  .contact-form-box h2{
    font-size:32px;
  }
}

/* GALERİ SAYFASI */

.gallery-page{
  padding:90px 0;
  background:#faf7f2;
}

.gallery-page-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.gallery-lightbox{
  display:block;
  height:220px;
  overflow:hidden;
  border-radius:16px;
  position:relative;
}

.gallery-lightbox img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.3s;
}

.gallery-lightbox:hover img{
  transform:scale(1.05);
}

.gallery-lightbox{
  position:relative;
  display:block;
  height:280px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.gallery-lightbox img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.4s;
}

.gallery-lightbox span{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.3s;
}

.gallery-lightbox span i{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#d6a24a;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.gallery-lightbox:hover img{
  transform:scale(1.08);
}

.gallery-lightbox:hover span{
  opacity:1;
}

/* LIGHTBOX */

.custom-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:25px;
}

.custom-lightbox.active{
  display:flex;
}

.custom-lightbox img{
  max-width:92%;
  max-height:88vh;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.lightbox-close{
  position:absolute;
  top:24px;
  right:24px;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:#d6a24a;
  color:#111;
  font-size:24px;
  cursor:pointer;
}

/* MOBİL */

@media(max-width:992px){
  .gallery-page-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .gallery-page-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-lightbox{
    height:140px;
  }
}

  .gallery-lightbox{
    height:190px;
    border-radius:16px;
  }
}

