* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #17213a;
  background: #fffaf1;
  padding-bottom: 0;
}

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: 48% 52%;
  align-items: center;
  gap: 0;
}

.hero-text {
  position: relative;
  z-index: 3;
  padding: 70px 0;
}

.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: 92px;
  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: 28px;
  align-items: center;
}

.hero-features div {
  background: transparent;
  box-shadow: none;
  padding: 0;
  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-image {
  position: relative;
  height: 560px;
  margin-right: -120px;
  overflow: hidden;
  border-radius: 90px 0 0 90px;
}

.hero-image::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 0;
  bottom: 0;
  width: 70px;
  background: #fff4df;
  border-radius: 0 50% 50% 0;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fresh-badge {
  position: absolute;
  right: 70px;
  bottom: 45px;
  width: 170px;
  height: 170px;
  background: #ff4b14;
  color: #fff;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
}

/* SECTION */
.section-title {
  text-align: center;
  margin-bottom: 38px;
}

.section-title span,
.why span {
  color: #ff5a1f;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title h2,
.why h2 {
  font-size: 38px;
  margin-top: 8px;
}

/* SERVICES */
.services {
  padding: 75px 0 55px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.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;
}

.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 h2 {
  color: #fff;
}

.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 */
footer {
  background: #fff;
  padding: 45px 0 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-grid img {
  height: 60px;
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 10px;
}

footer a {
  color: #17213a;
}

footer h4 {
  margin-bottom: 15px;
}

/* 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;
  }

  .hero-text {
    padding: 45px 0 25px;
  }

  .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-image {
  position: relative;
  height: 560px;
  margin-right: -120px;
  overflow: hidden;
  border-radius: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  clip-path: polygon(
    15% 0,
    100% 0,
    100% 100%,
    12% 100%,
    5% 92%,
    8% 78%,
    15% 65%,
    8% 50%,
    5% 36%,
    9% 18%
  );
}

.hero-image::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -20px;
  width: 180px;
  height: 110%;
  background: #fff4df;
  border-radius: 50%;
  z-index: 2;
}

.curve-line {
  position: absolute;
  left: 82px;
  top: 0;
  width: 8px;
  height: 100%;
  background: #ffb000;
  border-radius: 50%;
  z-index: 3;
}

.fresh-badge {
  position: absolute;
  right: 70px;
  bottom: 45px;
  width: 170px;
  height: 170px;
  background: #ff4b14;
  color: #fff;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
}

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 20px 14px;
    text-align: center;
  }

  .icon {
    margin: 0 auto 15px;
  }

  .section-title h2,
  .why h2,
  .price-box h2 {
    font-size: 27px;
  }

  .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(3, 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;
  }

  .mobile-fixed-bar .price {
    background: #8357d8;
  }
}