/* 1. Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  transition: all 0.4s ease;
}

body,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.5rem;
}

p {
  margin: 0.5rem;
  padding: 0.5rem;
}

header,
main,
nav,
section,
article,
aside,
footer {
  display: block;
}

section {
  margin-bottom: 2rem;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: system-ui, sans-serif;
  background-color: #f8fafc;
  padding-top: 70px;
}

header,
footer {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
  background-color: #18185e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar.hide {
  opacity: 0.5;
  transform: translateY(-100%);
}

.navbar .logo {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: auto;
}
.d-flex {
  display: flex;
}

/* Checkbox hack */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}

/* Menü linkleri */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar ul li:hover {
  color: white;
  cursor: pointer;
  background: #ed1c24;
  border-radius: 4px;
}

#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Container */
.container-fluid {
  width: 100%;
  padding: 1rem;
}

.container {
  width: 100%;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.featured-img {
  max-width: 100%;
  display: block;
  height: auto;
  width: 100%;
  object-fit: cover;
  margin-bottom: 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
/* Sidebar */
.sidebar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-radius: 10px;
}

.grid-2-col,
.grid-3-col,
.grid-4-col {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

/* Breadcrumbs */
.breadcrumb-nav {
  position: relative;
  padding: 1.125rem 0;
  background-color: #f0f4f8;
}

ul.breadcrumb {
  position: relative;
  display: flex;
  font-size: 1rem;
  overflow: hidden;
  color: #186adc;
}

ul.breadcrumb li {
  position: relative;
  margin-right: 0.5rem;
  white-space: nowrap;
}

ul.breadcrumb li + li:before {
  padding: 8px;
  color: #d2d2db;
  content: ">";
  font-weight: bold;
  font-size: 0.75rem;
}

ul.breadcrumb li a {
  color: #18185e;
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  font-weight: 800;
  color: #01447e;
}

.footer-top {
  width: 100%;
  float: left;
  background-color: #18185e;
  color: #fff;
  height: auto;
  background-size: 100%;
  padding: 60px 0px;
  text-decoration: none;
}

.footer-bottom {
  width: 100%;
  float: left;
  background-color: #ffffff;
  height: auto;
  text-decoration: none;
}

.footer-list {
  max-width: 300px;
  list-style: none;
}
.footer-list li,
.footer-list li a {
  display: flex;
  font-size: 1.1rem;
  transition: color 0.2s;
  font-weight: 500;
  margin-bottom: 5px;
}
.footer-list li img {
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem; /* optional */
}
.copyright-text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #252525;
  text-align: center;
  margin: 20px 0px 20px 0px;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.lead {
  font-size: 1.2rem;
}
.shield-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.inline-cta-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #e8f0fe 0%, #fff 100%);
  border-radius: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

/* TABLE */
.inner-table,
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin-bottom: 20px;

  overflow: hidden;
}
.table {
  border: 1px solid #f5f5f5;
}
.table thead {
  overflow: hidden;
}

.inner-table {
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.inner-table thead {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.table th,
.table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #f5f5f5;
}

.table th {
  background: #eef4fe;
  font-weight: 600;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table tbody tr:hover {
  background: #fafafa;
}

.box-shadow {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #dadce0;
}
.text-center {
  text-align: center;
}
.inner-box,
.inner-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #d5dee8;
  position: relative;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #d5dee8;
  margin-bottom: 40px;
  border-top: 6px solid #272b91;
  position: relative;
}
.testimonial-card-content {
  padding: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.testimonial-card .avatar {
  border-radius: 50%;
  border: 4px solid #272b91;
  background-color: #fff;
  color: #fff;
  position: absolute;
  width: 60px;
  height: 60px;
  left: 45%;
  top: -25px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
}
.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testimonial-stars {
  color: #fbbc05;
  font-size: 14px;
  margin-bottom: 10px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.inner-card-light {
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #d5dee8;
  position: relative;
}
.inner-card-light:hover {
  border: 2px solid #272b91;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.inner-box:hover,
.inner-card:hover,
.testimonial-card:hover {
  border: 2px solid #272b91;
}
.step-count-absolute {
  width: 40px;
  height: 40px;
  color: #272b91;
  background: #eef4fe;
  border-radius: 0;
  border-bottom-right-radius: 50%;
  border: 1px dashed #e3e3e3;
  display: flex;
  font-size: 20px;
  font-weight: 800;
  position: absolute;
  justify-content: center;
  top: -1px;
  left: -1px;
  box-shadow:
    0 4px 6px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.inner-box:hover .step-count-absolute {
  background: #272b91;
  color: #fff;
  border: 1px solid #272b91;
}
.step-count {
  width: 60px;
  height: 60px;
  background: #272b91;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.stat-box strong {
  display: block;
  font-size: 3rem;
  color: #272b91;
  margin-bottom: 10px;
}
.stat-box span {
  font-size: 0.95rem;
}

/* Call US */
.call-us-button {
  display: flex;
  position: fixed;
  bottom: 30px;
  left: 30px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: #272b91;
  background-image: radial-gradient(circle farthest-side, #576ff6, #262dde);
}

.call-us-button:hover {
  transform: translateY(2px);
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

/* Whatsapp Support */

.whatsapp-support-button {
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  background-color: [object object];
  background-image: radial-gradient(
    circle farthest-side,
    rgba(83, 211, 117, 1),
    rgba(29, 132, 57, 1)
  );
}

.whatsapp-support-button:hover {
  transform: translateY(2px);
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}
.whatsapp-support-button img,
.call-us-button img {
  max-width: 30px;
  max-height: 30px;
}
.box-cta-blue {
  background: #272b91;
  color: white;
  border-radius: 24px;
  padding: 2rem;
}
.box-cta-blue-light {
  background: #d2e2fc;
  border-radius: 24px;
  padding: 2rem;
}
/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.faq-container {
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-weight: 600;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: #666;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #666;
  line-height: 1.6;
}

.faq-answer.active {
  padding: 0 24px 24px;
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #d5dee8;
}

.card.animate {
  opacity: 1;
  transform: translateY(0);
}

.card:hover,
.card.animate:hover {
  border: 1px solid #c1cedd;
  transform: translateY(-15px) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-image-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  transition: all 0.3s ease;
}

.card-image-top {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.card:hover .card-image-top::before {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.4) 0%,
    rgba(139, 92, 246, 0.3) 100%
  );
}

.inner-box-content,
.inner-card-content,
.card-content {
  padding: 1rem;
}

.inner-box-content p,
.inner-card-content p,
.card-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}

.scrollable {
  height: 100%;
  max-height: 500px;
  overflow-y: auto;
  padding: 10px;
  margin-bottom: 15px;
}

.scrollable::-webkit-scrollbar {
  width: 8px;
}

.scrollable::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.pill-links-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill-link {
  display: flex;
  padding: 0.4rem 1rem;
  background: #f8fafc;
  color: #64748b;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.pill-link:hover {
  background: #272b91;
  color: #fff;
}

/* hero */
.hero {
  padding-top: 100px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="#18185e" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 25s ease-in-out infinite;
  opacity: 0.7;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.4s forwards;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.2s forwards;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.hero .cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: rgb(6 134 235);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.hero .cta-button:hover {
  transform: translateY(-3px);
  background: rgb(4, 117, 203);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero .cta-button-whatsapp {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #34a853;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.hero .cta-button-whatsapp:hover {
  transform: translateY(-3px);
  background: #4fe38a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
/* Floating Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  background: rgba(255, 255, 255, 0.08);
  animation: floatShape2 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 25%;
  background: rgba(255, 255, 255, 0.12);
  animation: floatShape3 18s ease-in-out infinite;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  left: 20%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  animation: floatShape4 22s ease-in-out infinite;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 15%;
  right: 40%;
  background: rgba(255, 255, 255, 0.15);
  animation: floatShape5 16s ease-in-out infinite reverse;
}

.shape-6 {
  width: 140px;
  height: 140px;
  bottom: 15%;
  right: 10%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  animation: floatShape6 28s ease-in-out infinite;
}

.sidebar-widget {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #d5dee8;
  margin-top: 2rem;
}

.sidebar-widget h1,
.sidebar-widget h2,
.sidebar-widget h3,
.sidebar-widget h4,
.sidebar-widget h5,
.sidebar-widget h6,
.sidebar-widget p {
  padding: 10px;
}

@keyframes floatShape1 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
  }

  50% {
    transform: translateY(-15px) translateX(-10px) rotate(180deg);
  }

  75% {
    transform: translateY(-40px) translateX(15px) rotate(270deg);
  }
}

@keyframes floatShape2 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }

  33% {
    transform: translateY(25px) translateX(-20px) scale(1.1);
  }

  66% {
    transform: translateY(-20px) translateX(25px) scale(0.9);
  }
}

@keyframes floatShape3 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) translateX(-30px) rotate(180deg);
  }
}

@keyframes floatShape4 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateY(20px) translateX(-15px) rotate(45deg);
  }

  50% {
    transform: translateY(-10px) translateX(30px) rotate(90deg);
  }

  75% {
    transform: translateY(15px) translateX(-20px) rotate(135deg);
  }
}

@keyframes floatShape5 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }

  50% {
    transform: translateY(-35px) translateX(20px) scale(1.2);
  }
}

@keyframes floatShape6 {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) translateX(10px) rotate(60deg);
  }

  66% {
    transform: translateY(10px) translateX(-25px) rotate(120deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .layout {
    grid-template-columns: 3fr 1fr;
  }

  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 991px) {
  ul.breadcrumb {
    display: none;
  }

  .layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .sidebar {
    order: 1;
  }

  .content {
    order: 2;
  }

  .grid-2-col {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .hamburger {
    display: flex;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    display: none;
    padding: 1rem 2rem;
    box-sizing: border-box;
    background-color: #272b91;
  }

  #menu-toggle:checked + .hamburger + ul {
    display: flex;
  }
}

@media (max-width: 767px) {
  .grid-2-col {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/*Grup Fiyat*/
.grup-fiyat-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 10px;
  margin-top: 20px;
}
.grup-fiyat-badge .grup-iyat-icon {
  font-size: 24px;
  color: #22c55e;
}
.grup-fiyat-badge .grup-fiyat-text {
  text-align: left;
}
/* Paddings & Margins */
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 10px;
}
.p-2 {
  padding: 20px;
}

.p-3 {
  padding: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pl-2 {
  padding-left: 20px;
}

.pl-3 {
  padding-left: 30px;
}

.pr-2 {
  padding-right: 20px;
}

.pr-3 {
  padding-right: 30px;
}

.m-0 {
  margin: 0;
}

.m-2 {
  margin: 20px;
}

.m-3 {
  margin: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}
.ml-1 {
  margin-left: 10px;
}
.ml-2 {
  margin-left: 20px;
}

.ml-3 {
  margin-left: 30px;
}
.mr-1 {
  margin-right: 10px;
}
.mr-2 {
  margin-right: 20px;
}

.mr-3 {
  margin-right: 30px;
}

.bg-primary {
  padding: 140px 0 100px;
  background: #18185e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-gradient {
  padding: 60px 0 60px;
  background: linear-gradient(135deg, #ffffff 0%, #abc7ff 100%);
  color: #18185e;
  position: relative;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  text-align: center;
}
.btn-primary-gradient {
  background: linear-gradient(to bottom, #4a5ef0 0%, #4152eb 45%, #272b91 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35) inset 0 -3px 6px rgba(0, 0, 0, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease;
}
.btn-success-gradient {
  background: linear-gradient(to bottom, #4fe38a 0%, #34a853 45%, #2c8c45 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease;
}
.d-none {
  display: none;
}
/* Whatsapp */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  /* Butonların sığmazsa alt satıra geçmesini sağlar */
  gap: 8px;
  /* Butonlar arası boşluk */
  margin-bottom: 20px;
  /* Mesaj yazma alanıyla arasına boşluk koyar */
  justify-content: flex-start;
  /* Butonları sola hizala */
}

.quick-reply-btn {
  background-color: #ffffff;
  border: 1px solid #d4edda;
  /* Çok açık yeşil çerçeve */
  color: #075e54;
  /* Koyu yeşil metin */
  padding: 8px 14px;
  border-radius: 20px;
  /* Yuvarlak kenarlar */
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-reply-btn:hover {
  background-color: #e0f2f1;
  /* Üzerine gelince hafif renk değişimi */
  transform: translateY(-2px);
  /* Hafif yukarı kalkma efekti */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.whatsapp-widget-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 350px;
  background-color: #f0f2f5;
  /* WhatsApp arka plan rengi */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-widget-container.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.widget-header {
  background-color: #075e54;
  /* Koyu yeşil */
  color: #fff;
  padding: 12px 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
}

.widget-close-btn:hover {
  opacity: 1;
}

.widget-body {
  padding: 20px;
}

.welcome-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.avatar {
  width: 40px;
  height: 40px;
  background-color: #ffb74d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.message-content {
  background-color: #fff;
  padding: 12px 15px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.message-content p {
  margin: 0;
  color: #333;
}

.input-area {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

#whatsapp-message-input {
  flex-grow: 1;
  border: none;
  outline: none;
  background: none;
  padding: 10px 15px;
  font-size: 15px;
  /* EKLENEN DÜZELTME: Yazı rengi eklendi */
  color: #333;
}
/* Placeholder metninin rengini de belirleyelim */

#whatsapp-message-input::placeholder {
  color: #999;
}

#send-whatsapp-btn {
  background-image: linear-gradient(45deg, #25d366, #128c7e);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}

#send-whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.whatsapp-main-button:hover {
  background-color: #128c7e;
  color: #fff;
}

.whatsapp-main-button i {
  font-size: 22px;
}

@media (max-width: 400px) {
  .whatsapp-widget-container {
    width: calc(100% - 30px);
    bottom: 15px;
    right: 15px;
  }
}
