* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #17213a;
  background: #fffaf1;
}

a {
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: auto;
}

/* HEADER */
.top-header {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 58px;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: #17213a;
  font-weight: 700;
  font-size: 14px;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn-whatsapp,
.btn-call {
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}

.btn-whatsapp {
  background: #17b75d;
}

.btn-call {
  background: #ff5a1f;
}

.mobile-menu-btn {
  display: none;
  border: none;
  background: none;
  font-size: 26px;
}

/* HERO */
.hero {
  padding: 0;
  background: #fff4df;
  overflow: hidden;
}

.hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  gap: 165px;
}

.hero-text {
  position: relative;
  z-index: 3;
  padding: 70px 0;
  margin-left: -30px;
}

.badge {
  display: inline-block;
  background: #ffe5a3;
  color: #ff5a1f;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
}

.hero h1 {
  font-size: 54px;
  margin: 25px 0 18px;
  line-height: 1.05;
  color: #17213a;
}

.hero h1 strong {
  color: #ff4b14;
  font-size: 88px;
  display: block;
  font-style: italic;
  letter-spacing: -2px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 35px;
}

.btn {
  padding: 15px 22px;
  border-radius: 13px;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.orange {
  background: #ff5a1f;
}

.green {
  background: #17b75d;
}

.purple {
  background: #8357d8;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 24px;
  align-items: center;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #17213a;
  white-space: nowrap;
}

.hero-features i {
  min-width: 48px;
  width: 48px;
  height: 48px;
  background: #ffe1bd;
  color: #ff4b14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 500px;
  border-radius: 80px 20px 80px 20px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid rgba(255,255,255,.75);
  border-radius: 70px 16px 70px 16px;
  z-index: 4;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fresh-badge {
  position: absolute;
  right: 35px;
  bottom: 35px;
  width: 155px;
  height: 155px;
  background: #ff4b14;
  color: #fff;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title span {
  display: inline-block;
  color: #ff5a1f;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title span::before,
.section-title span::after {
  content: "•••";
  color: #ffb800;
  margin: 0 10px;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 5px;
  color: #17213a;
}

.section-title h2 i {
  color: #ff4b14;
  font-weight: 400;
}

.section-title p {
  margin-top: 12px;
  color: #555;
  font-size: 17px;
}

/* SERVICES */
.services {
  padding: 75px 0 55px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,.10);
  transition: .3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-img {
  height: 180px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #fff;
  font-size: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -39px 0 0 34px;
  position: relative;
  z-index: 2;
  border: 5px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.orange-icon {
  background: linear-gradient(135deg, #ffb800, #ff6b00);
}

.pink-icon {
  background: linear-gradient(135deg, #ff3d7f, #ff6b9c);
}

.purple-icon {
  background: linear-gradient(135deg, #7c5cff, #a66cff);
}

.green-icon {
  background: linear-gradient(135deg, #30c784, #4fd6a2);
}

.service-content {
  padding: 24px 28px 30px;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #17213a;
}

.service-content p {
  color: #555;
  line-height: 1.7;
  min-height: 58px;
}

.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 900;
  color: #ff5a1f;
}

.service-card:nth-child(2) .service-content a {
  color: #ff3d7f;
}

.service-card:nth-child(3) .service-content a {
  color: #7c5cff;
}

.service-card:nth-child(4) .service-content a {
  color: #30c784;
}

/* WHY */
.why {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffb800, #ff5a1f);
  color: #fff;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.why span {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.why h2 {
  color: #fff;
  font-size: 38px;
  margin-top: 8px;
}

.why ul {
  margin-top: 25px;
  list-style: none;
}

.why li {
  background: rgba(255,255,255,.18);
  padding: 15px 18px;
  border-radius: 14px;
  margin-bottom: 12px;
  font-weight: 700;
}

.why-img img {
  width: 100%;
  border-radius: 25px;
}

/* WHATSAPP BOX */
.whatsapp-box {
  padding: 70px 0;
  background: #fff;
}

.whatsapp-inner {
  background: linear-gradient(135deg, #04a94f, #17c96b);
  color: #fff;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-inner h2 {
  font-size: 42px;
}

.whatsapp-inner a {
  display: inline-block;
  background: #fff;
  color: #04a94f;
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 900;
  margin-top: 20px;
}

.whatsapp-inner img {
  width: 240px;
}

/* PRICE */
.price-box {
  padding: 65px 0;
  text-align: center;
  background: #fff4fa;
}

.price-box h2 {
  font-size: 36px;
}

.price-box p {
  margin: 14px 0 22px;
}

/* FOOTER CALL */
.footer-call {
  background: linear-gradient(135deg, #ff2f73, #ff3d3d);
  padding: 18px 0;
  color: #fff;
}

.footer-call-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 25px;
}

.footer-call-text {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 900;
}

.footer-call-text i {
  width: 48px;
  height: 48px;
  background: #ffb800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-call-phone {
  display: flex;
  align-items: left;
  gap: 25px;
}

.footer-call-phone strong {
  font-size: 22px;
}

.footer-call-phone small {
  font-weight: 700;
}


/* FOOTER */
.site-footer {
  background: #fffaf1;
  padding: 45px 0 20px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-about img {
  height: 70px;
  margin-bottom: 14px;
}

.footer-about p {
  line-height: 1.6;
  color: #555;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #ff5a1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.site-footer h4 {
  margin-bottom: 16px;
  color: #17213a;
  font-size: 17px;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: #17213a;
}

.site-footer p {
  margin-bottom: 10px;
  color: #444;
}

.site-footer p i {
  width: 22px;
  color: #17213a;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #777;
  font-size: 14px;
}

/* MOBILE FIXED BAR */
.mobile-fixed-bar {
  display: none;
}

/* MOBİL */
@media (max-width: 768px) {

  body {
    padding-bottom: 78px;
  }

  .header-inner {
    height: 74px;
  }

  .logo img {
    height: 50px;
  }

  .menu,
  .header-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .menu.active {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 15px 25px rgba(0,0,0,.10);
  }

  .menu.active a {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .hero {
    text-align: center;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 35px 0;
  }

  .hero-text {
    padding: 0;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero h1 strong {
    font-size: 55px;
  }

  .hero p {
    font-size: 16px;
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    padding: 13px 16px;
    font-size: 14px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-features div {
    justify-content: center;
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
    white-space: normal;
    font-size: 14px;
  }

  .hero-features i {
    min-width: 42px;
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .hero-slider {
    height: 310px;
    border-radius: 35px 15px 35px 15px;
  }

  .hero-slider::before {
    inset: 8px;
    border-radius: 28px 10px 28px 10px;
  }

  .fresh-badge {
    width: 100px;
    height: 100px;
    right: 15px;
    bottom: 15px;
    font-size: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .service-img {
    height: 120px;
  }

  .service-icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
    margin: -31px auto 0;
  }

  .service-content {
    padding: 18px 14px 22px;
    text-align: center;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 14px;
    min-height: auto;
  }

  .service-content a {
    font-size: 14px;
    justify-content: center;
  }

  .section-title h2,
  .why h2,
  .price-box h2 {
    font-size: 27px;
  }

  .section-title p {
    font-size: 15px;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .whatsapp-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
  }

  .whatsapp-inner h2 {
    font-size: 30px;
  }

  .whatsapp-inner img {
    width: 190px;
    margin-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mobile-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,.15);
  }

  .mobile-fixed-bar a {
    color: #fff;
    padding: 15px 5px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
  }

  .mobile-fixed-bar i {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
  }

  .mobile-fixed-bar .wp {
    background: #17b75d;
  }

  .mobile-fixed-bar .call {
    background: #ff5a1f;
  }

}

.comment-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }

  .comment-card{
    min-width:260px;
    flex-shrink:0;
    scroll-snap-align:start;
  }
  
  .stars{
    font-size:16px;
    margin-bottom:10px;
  }
  
  .comment-card p{
    font-size:13px;
    line-height:1.5;
    margin-bottom:12px;
  }
  
  .comment-user strong{
    font-size:15px;
  }

  .comment-user span{
    font-size:12px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.gallery-item img {
    height: 140px;
    border-radius: 15px;
}

.social-icons{
    gap:12px;
}

.social-icons a{
    width:65px;
    height:65px;
    font-size:28px;
}

.contact-boxes{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.contact-item{
    padding:18px;
}

.contact-item i{
    font-size:30px;
}

.contact-item span{
    font-size:15px;
}

/* YORUMLAR */

.comments {
  padding: 80px 0;
  background: #fff;
}

.comment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.comment-card {
  padding: 30px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
}

.comment-card:hover {
  transform: translateY(-6px);
}

.comment-card:nth-child(1) {
  background: #fff8ef;
}

.comment-card:nth-child(2) {
  background: #f4fff3;
}

.comment-card:nth-child(3) {
  background: #faf5ff;
}

.stars {
  color: #ffb800;
  font-size: 24px;
  margin-bottom: 15px;
}

.comment-card p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.comment-user strong {
  display: block;
  font-size: 18px;
  color: #17213a;
}

.comment-user span {
  color: #777;
  font-size: 14px;
}

/* GALERİ */

.gallery {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* SOSYAL MEDYA */

.social-area{
    padding:80px 0;
    background:#fffdf8;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:40px;
    margin-bottom:50px;
}

.social-icons a{
    width:90px;
    height:90px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-8px);
}

.instagram{
    color:#E1306C;
}

.facebook{
    color:#1877F2;
}

.tiktok{
    color:#000;
}

.youtube{
    color:#FF0000;
}

.contact-boxes{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.contact-item{
    background:#fff;
    border:2px solid #f2eadf;
    border-radius:25px;
    padding:25px;
    text-align:center;
    color:#17213a;
    transition:.3s;
}

.contact-item:hover{
    transform:translateY(-5px);
    border-color:#ff5a1f;
}

.contact-item i{
    font-size:40px;
    margin-bottom:15px;
    display:block;
}

.contact-item:nth-child(1) i{
    color:#ff6b00;
}

.contact-item:nth-child(2) i{
    color:#17b75d;
}

.contact-item:nth-child(3) i{
    color:#ff3b30;
}

.contact-item:nth-child(4) i{
    color:#3498db;
}

.contact-item span{
    font-size:20px;
    font-weight:700;
}

.page-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff4df, #ffe7b8);
  text-align: center;
}

.page-hero span {
  display: inline-block;
  background: #ffe5a3;
  color: #ff5a1f;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 900;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: 48px;
  color: #17213a;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

.page-hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-detail {
  padding: 80px 0;
  background: #fff;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.service-detail-text span {
  color: #ff5a1f;
  font-weight: 900;
}

.service-detail-text h2 {
  font-size: 38px;
  margin: 12px 0 20px;
}

.service-detail-text p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.service-detail-text ul {
  list-style: none;
  margin-top: 22px;
}

.service-detail-text li {
  margin-bottom: 13px;
  font-weight: 700;
}

.service-detail-text li i {
  color: #17b75d;
  margin-right: 8px;
}

.service-detail-img img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.service-cta {
  padding: 70px 0;
  background: #fff4fa;
  text-align: center;
}

.service-cta h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.service-cta p {
  margin-bottom: 24px;
  color: #555;
}

@media (max-width:768px) {
  .page-hero {
    padding: 55px 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-text h2,
  .service-cta h2 {
    font-size: 28px;
  }
}

/* HAKKIMIZDA SAYFASI */

.about-hero {
  background:
    linear-gradient(135deg, rgba(255,244,223,.94), rgba(255,231,184,.94)),
    url("../img/hakkimizda-hero.jpg") center/cover;
}

.about-section {
  padding: 85px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 35px 12px 35px 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.13);
}

.about-mini-card {
  position: absolute;
  right: -25px;
  bottom: 35px;
  background: #ff4b14;
  color: #fff;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(255,75,20,.35);
  border: 7px solid #fff;
}

.about-mini-card strong {
  font-size: 42px;
  line-height: 1;
}

.about-mini-card span {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.small-title {
  display: inline-block;
  color: #ff5a1f;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #17213a;
}

.about-text p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 30px;
}

.about-list div {
  background: #fff8ef;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
}

.about-list i {
  color: #17b75d;
  margin-right: 8px;
}

.about-stats {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffb800, #ff5a1f);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  background: rgba(255,255,255,.18);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 24px;
  backdrop-filter: blur(5px);
}

.stat-card i {
  font-size: 34px;
  margin-bottom: 12px;
}

.stat-card strong {
  display: block;
  font-size: 38px;
  margin-bottom: 6px;
}

.stat-card span {
  font-weight: 800;
}

.mission-section {
  padding: 80px 0;
  background: #fffaf1;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mission-card {
  background: #fff;
  padding: 34px;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  transition: .3s;
}

.mission-card:hover {
  transform: translateY(-7px);
}

.mission-icon {
  width: 72px;
  height: 72px;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.mission-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.mission-card p {
  color: #555;
  line-height: 1.7;
}

/* HAKKIMIZDA MOBİL */
@media (max-width:768px) {
  .about-section {
    padding: 55px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-main-img {
    height: 330px;
    border-radius: 28px;
  }

  .about-mini-card {
    width: 115px;
    height: 115px;
    right: 10px;
    bottom: 20px;
  }

  .about-mini-card strong {
    font-size: 30px;
  }

  .about-mini-card span {
    font-size: 12px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-card {
    padding: 24px 12px;
  }

  .stat-card strong {
    font-size: 30px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* GALERİ SAYFASI */

.gallery-hero{

background:
linear-gradient(rgba(255,248,235,.93),
rgba(255,240,215,.93)),
url("../img/gallery-banner.jpg") center/cover;

}

.gallery-page{

padding:80px 0;
background:#fff;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;

}

.gallery-item{

position:relative;
overflow:hidden;
border-radius:22px;
box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.gallery-item img{

width:100%;
height:260px;
object-fit:cover;
display:block;
transition:.45s;

}

.gallery-overlay{

position:absolute;
left:0;
right:0;
top:0;
bottom:0;

background:rgba(255,90,31,.78);

display:flex;
align-items:center;
justify-content:center;

opacity:0;

transition:.35s;

}

.gallery-overlay i{

font-size:42px;
color:#fff;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}