@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #0891B2;
  --primary-100: white;
  --primary-200: #f0f9ff;
  --primary-300: #6da0e2;
  --primary-400: #dcfce7;
  --primary-500: #f9fafb;
  --primary-600: #E0F7FF;
  --primary-700: #6b7280;
  --primary-800: #0f2942;
  --primary-900: black;
  --gray-bg: #f8fafc;
  --border-color: #dbeafe;
  --white-text: white;
  --black-text: black;
  --border-radius: 10px;
  --border-radius-lg: 15px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --colored-shadow: 0 8px 24px rgba(0, 183, 255, 0.35);
}

/* GENERAL CSS START */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}

ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  font-size: 16px;
  transition: all 0.3s ease;
  color: black;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
}

section {
  padding: 60px 0;
  scroll-margin-top: 180px;
}

@media (max-width: 992px) {
  section {
    padding: 30px 0;
    scroll-margin-top: 180px;
  }
}

.no-scroll {
  overflow: hidden;
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.container-fluid {
  width: 95%;
  margin: 0 auto;
}

@media (max-width: 1320px) {
  .container {
    padding-inline: 15px;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-title .title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  background: var(--primary-600);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.section-title .bottom-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-800);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-title .desc {
  color: var(--primary-700);
  font-size: 15px;
}

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.content-wrapper p {
  margin-bottom: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  max-width: 100%;
  margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* WHY US SECTION START */

.features {
  padding: 0;
}

@media (max-width: 992px) {
  .features {
    padding: 30px 0;
  }
}

.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .features .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 568px) {
  .features .container {
    grid-template-columns: 1fr;
  }
}

.features .container .features-box {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

@media (max-width: 568px) {
  .features .container .features-box {
    flex-direction: column;
    text-align: center;
  }
}

.features .container .features-box:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.features .container .features-box:hover {
  background: var(--primary-600);
}

@media (max-width: 992px) {
  .features .container .features-box:not(:last-child) {
    border-right: none;
  }

  .features .container .features-box {
    background: var(--primary-600);
  }
}

.features .container .features-box .title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 2px;
}

.features .container .features-box .desc {
  color: var(--primary-700);
  font-size: 13px;
}

.features .container .features-box i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  transition: all 0.3s;
}

.features .container .features-box:hover i {
  background: var(--primary-color);
  color: var(--white-text);
}

@media (max-width: 992px) {
  .features .container .features-box i {
    background: var(--primary-color);
    color: var(--white-text);
  }
}

/* WHY US SECTION END */

/* ABOUT SECTION START */

.about {
  background-color: var(--gray-bg);
}

.about .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
}

@media (max-width: 992px) {
  .about .container {
    grid-template-columns: 1fr;
  }
}

.about .container .about-left,
.about .container .about-right {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .about .container .about-left,
  .about .container .about-right {
    grid-column: auto;
  }
}

.articles {
  padding-left: 40px !important;
}

.articles li {
  position: relative;
  margin-bottom: 10px;
}

.articles li::after {
  content: "✓";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 11px;
}

.about-right {
  position: relative;
}

.about-right::after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  bottom: 14px;
  left: 14px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  opacity: 0.25;
  z-index: 0;
}

.about-right img {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.about-right .experience {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  top: 24px;
  left: -24px;
  z-index: 2;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: 20px 22px;
  box-shadow: var(--colored-shadow);
}

.about-right .experience span:first-child {
  font-size: 34px;
  font-weight: 800;
}

/* ABOUT SECTION END */

/* PRODUCTS SECTION START */

.products {
  margin-bottom: 60px;
}

.products .container .section-title {
  align-items: center;
  margin-bottom: 40px;
}

/* CARD SLIDER GENERAL CSS START */
.card-wrapper {
  min-width: 0;
  position: relative;
}

.card-carousel {
  position: static;
  overflow: hidden;
  cursor: grab;
  padding: 15px 0;
}

.card-carousel:active {
  cursor: grabbing;
}

.card-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card-carousel-track.no-transition {
  transition: none;
}

.card-carousel-slide {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .card-carousel-slide {
    flex: 0 0 calc(50% - 15px);
    margin: 0 7.5px;
  }
}

@media (max-width: 768px) {
  .card-carousel-slide {
    flex: 0 0 calc(100% - 10px);
    margin: 0 5px;
  }
}

.card-carousel-prev,
.card-carousel-next {
  position: absolute;
  bottom: -75px;
  top: auto;
  transform: none;
  background: var(--primary-100);
  border: 2px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transition: all 0.2s ease;
  z-index: 10;
}

.card-carousel-prev {
  left: calc(50% - 50px);
}

.card-carousel-next {
  right: calc(50% - 50px);
}

.card-carousel-prev:hover,
.card-carousel-next:hover {
  background: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  color: var(--primary-100);
}

/* CARD SLIDER GENERAL CSS END */
.product-box {
  display: block;
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.product-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.product-box:hover .product-image::after {
  height: 100%;
}

.product-image img {
  transition: all 0.3s ease;
}

.product-box:hover .product-image img {
  transform: scale(1.1);
}

.product-box-bottom {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-box-bottom .icon {
  border-radius: var(--border-radius);
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: var(--primary-600);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 13px;
  transition: all 0.25s;
}

.product-box:hover .product-box-bottom .icon {
  background: var(--primary-color);
  color: var(--primary-100);
}

/* PRODUCTS SECTION END */

/* WHY US SECTION START */

.why-us {
  background-color: var(--gray-bg);
}

.why-us .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
}

@media (max-width: 992px) {
  .why-us .container {
    grid-template-columns: 1fr;
  }
}

.why-us .container .why-us-left,
.why-us .container .why-us-right {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .why-us .container .why-us-left,
  .why-us .container .why-us-right {
    grid-column: auto;
  }
}

.why-us .container .why-us-left {
  position: relative;
}

.why-us .container .why-us-left img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.why-us .container .why-us-left .experience {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 20px 24px;
  box-shadow: var(--colored-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-us .container .why-us-left .experience .number {
  font-size: 32px;
  font-weight: 800;
}

.why-us .container .why-us-right .section-title {
  margin-bottom: 30px;
}

.why-us .container .why-us-right .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.why-us .container .why-us-right .wrapper .why-us-box {
  background: var(--primary-100);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.why-us .container .why-us-right .wrapper .why-us-box:hover {
  background-color: var(--primary-color);
  box-shadow: var(--colored-shadow);
}

.why-us .container .why-us-right .wrapper .why-us-box i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.why-us .container .why-us-right .wrapper .why-us-box:hover i {
  color: var(--primary-color);
}

.why-us .container .why-us-right .wrapper .why-us-box .title {
  font-size: 14px;
  font-weight: 700;
}

.why-us .container .why-us-right .wrapper .why-us-box .short-desc {
  color: var(--primary-700);
  font-size: 13px;
}

.why-us .container .why-us-right .wrapper .why-us-box:hover .title,
.why-us .container .why-us-right .wrapper .why-us-box:hover .short-desc {
  color: var(--white-text);
}

/* WHY US SECTION END */

/* STATISTICS SECTION START */

.statistics {
  position: relative;
}

.statistics::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-600),
    var(--primary-color),
    var(--primary-600)
  );
}

.statistics .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

@media (max-width: 992px) {
  .statistics .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 568px) {
  .statistics .container {
    grid-template-columns: 1fr;
  }
}

.statistics .container .statistics-box {
  text-align: center;
  color: var(--primary-color);
  padding: 40px 24px;
}

@media (max-width: 992px) {
  .statistics .container .statistics-box {
    box-shadow: var(--shadow-md);
  }
}

.statistics .container .statistics-box:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

@media (max-width: 992px) {
  .statistics .container .statistics-box:not(:last-child) {
    border-right: none;
  }

  .statistics .container .statistics-box {
    border: 1px solid var(--border-color);
  }
}

.statistics .container .statistics-box i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px dashed var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.5s;
  font-size: 27px;
}

.statistics .container .number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* STATISTICS SECTION END */

/* BLOG SECTION START */

.blog {
  background-color: var(--gray-bg);
  padding: 60px 0 120px 0;
}

.blog .section-title {
  align-items: center;
  margin-bottom: 40px;
}

.blog-box {
  display: block;
  box-shadow: var(--shadow-md);
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.blog-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-box .blog-box-bottom {
  padding: 20px;
}

.blog-box .blog-box-bottom .title {
  margin-bottom: 10px;
  font-weight: 700;
}

.blog-box .blog-box-bottom button {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-weight: 700;
}

/* BLOG SECTION END */

/* CTA START */

.cta .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

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

.cta .container .cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-column: span 8;
  background-color: gray;
  padding: 55px;
  border-top-left-radius: var(--border-radius-lg);
  border-bottom-left-radius: var(--border-radius-lg);
  color: var(--white-text);
}

@media (max-width: 768px) {
  .cta .container .cta-left {
    grid-column: auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.cta .container .cta-left .title {
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.cta .container .cta-left .bottom-title {
  font-size: 30px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.cta .container .cta-left .desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.cta .container .cta-right {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 15px;
  background-color: var(--primary-color);
  border-top-right-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
}

@media (max-width: 768px) {
  .cta .container .cta-right {
    grid-column: auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 30px 0;
  }
}

.cta .container .cta-right .title {
  font-size: 18px;
  color: var(--white-text);
}

.cta .container .cta-right .phone-link {
  font-size: 26px;
  font-weight: 800;
  color: var(--white-text);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.cta .container .cta-right .phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--primary-100);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
/* CTA END */

/* FOOTER START */

footer {
  background-color: var(--gray-bg);
  padding: 90px 0 0 0;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  footer .container {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}

footer .container .footer-left {
  grid-column: span 3;
}
@media (max-width: 992px) {
  footer .container .footer-left {
    grid-column: auto;
  }
}

footer .container .footer-left .logo {
margin-bottom: 15px;
    display: inline-block;
}

footer .container .footer-left .logo img {
  max-width: 150px;
}

footer .container .footer-left .desc {
  font-size: 14px;
  color: var(--primary-700);
  margin: 15px 0;
}

footer .container .footer-right {
  grid-column: span 9;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 992px) {
  footer .container .footer-right {
    grid-column: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
footer .container .footer-right .footer-col:nth-child(1) {
  width: 50%;
}

footer .container .footer-right .footer-col {
  width: 100%;
}

footer .container .footer-right .footer-col .footer-title {
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-600);
}

footer .container .footer-right .footer-col .footer-list li,
footer .container .footer-right .footer-col .footer-list li a {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--primary-700);
}

footer .footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 992px) {
  footer .footer-bottom {
    padding: 15px 15px 75px 15px;
  }
}

footer .footer-bottom,
footer .footer-bottom a {
  color: var(--primary-700);
  font-size: 14px;
}

/* FOOTER END */

/* BREADCRUMB START */

.breadcrumb-container {
  background-color: gray;
}

.breadcrumb-container .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.breadcrumb-container .container h1 {
  color: var(--white-text);
}

.breadcrumb-container .container .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.breadcrumb-container .container .links li,
.breadcrumb-container .container .links li a {
  color: var(--white-text);
}

.breadcrumb-container .container .links li {
  position: relative;
}

.breadcrumb-container .container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  color: var(--primary-100);
}

/* BREADCRUMB END */

/* PRODUCT PAGE START */

.product-page .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

@media (max-width: 568px) {
  .product-page .container {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT PAGE END */

/* BLOG PAGE START */

.blog-page .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

@media (max-width: 568px) {
  .blog-page .container {
    grid-template-columns: 1fr;
  }
}

/* BLOG PAGE END */

/* REFERENCES PAGE START */

.references-page .container .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.references-page .container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (max-width: 992px) {
  .references-page .container ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 568px) {
  .references-page .container ul {
    grid-template-columns: 1fr;
  }
}

.references-page .container ul li {
  background-color: var(--primary-color);
  color: var(--white-text);
  padding: 10px;
  box-shadow: var(--shadow-md);
}

/* REFERENCES PAGE END */

/* CONTACT PAGE START */

.contact-page {
  padding: 80px 0;
  background: #f9fafb;
}

.contact-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .contact-page .container {
    grid-template-columns: 1fr;
  }
}
/* SOL TARAF */
.contact-page-left {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-page-left .title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.contact-page-left .desc {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-page-left a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: #f3f4f6;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-page-left a i {
  width: 36px;
  height: 36px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  color: var(--primary-color);
}

.contact-page-left a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.contact-page-left a:hover i {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* SAĞ TARAF */
.contact-page-right {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-page-right .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* MAPS */
.maps iframe {
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* INPUT + TEXTAREA */
form input,
form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

/* Focus efekti */
form input:focus,
form textarea:focus {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* TEXTAREA özel */
form textarea {
  resize: none;
  min-height: 120px;
}

/* BUTTON */
form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-color));
  color: #fff;
  transition: all 0.3s ease;
}

/* Hover */
form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--colored-shadow);
}

/* Active */
form button:active {
  transform: scale(0.98);
}

/* CONTACT PAGE END */

/* BLOG DETAIL PAGE START */

.blog-detail .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .blog-detail .container {
    grid-template-columns: 1fr;
  }
}

.blog-detail .container .detail-left {
  grid-column: span 8;
}
@media (max-width: 992px) {
  .blog-detail .container .detail-left {
    grid-column: auto;
  }
}

.blog-detail .container .detail-left .content-wrapper {
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
}

.blog-detail .container .detail-right {
  grid-column: span 4;
  height: max-content;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}
@media (max-width: 992px) {
  .blog-detail .container .detail-right {
    grid-column: auto;
  }
}
.blog-detail .container .detail-right .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* BLOG DETAIL PAGE END */

/* PRODUCT DETAIL PAGE START */

.product-detail {
  padding: 60px 0 20px 0;
}

.offer-btn {
  display: inline-block;
  padding: 15px 60px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-color));
  color: #fff;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay svg {
  width: 28px;
  height: 28px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== LIGHTBOX (dinamik inject edilen CSS) ===== */
.lb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lbFadeIn 0.25s ease forwards;
}

@keyframes lbFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes lbFadeOut {
  to {
    opacity: 0;
  }
}

.lb-backdrop.is-closing {
  animation: lbFadeOut 0.2s ease forwards;
}

.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10;
}
.lb-close svg {
  width: 18px;
  height: 18px;
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.lb-nav svg {
  width: 20px;
  height: 20px;
}
.lb-prev {
  left: 18px;
}
.lb-next {
  right: 18px;
}
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lb-nav:active {
  transform: translateY(-50%) scale(0.93);
}
.lb-nav:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 130px);
  gap: 14px;
}

.lb-img-wrap {
  overflow: auto;
  border-radius: 6px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100vh - 190px);
  max-width: calc(100vw - 160px);
}
.lb-img-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.lb-img-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.lb-img-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}
.lb-img-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lb-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 200px);
  height: auto;
  border-radius: 4px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.lb-img-wrap img.is-loading {
  opacity: 0;
  transform: scale(0.97);
}

.lb-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4px;
  gap: 12px;
}
.lb-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-counter {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.lb-thumbs {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  overflow-x: auto;
  max-width: calc(100vw - 120px);
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.lb-thumbs::-webkit-scrollbar {
  height: 4px;
}
.lb-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.lb-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.lb-thumb-item {
  flex-shrink: 0;
  width: 52px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition:
    opacity 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.lb-thumb-item:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.lb-thumb-item.is-active {
  opacity: 1;
  border-color: #fff;
}
.lb-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@media (max-width: 640px) {
  .lb-content {
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 120px);
  }
  .lb-img-wrap {
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 180px);
  }
  .lb-prev {
    left: 8px;
  }
  .lb-next {
    right: 8px;
  }
  .lb-nav {
    width: 40px;
    height: 40px;
  }
  .lb-thumbs {
    display: none;
  }
  .lb-close {
    top: 10px;
    right: 10px;
  }
}

.gallery-grid .product-detail-form {
  padding: 0 0 60px 0;
}

.product-detail-form .container {
  box-shadow: var(--shadow-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}
.product-detail-form .container .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* PRODUCT DETAIL PAGE END */

/* OFFER FORM START */

.offer-form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

@media (max-width: 768px) {
  .offer-form {
    display: flex;
    flex-direction: column;
  }
}

.offer-form .form-group {
  grid-column: span 6;
}
@media (max-width: 768px) {
  .offer-form .form-group {
    grid-column: auto;
  }
}
.offer-form .form-group-full {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .offer-form .form-group-full {
    grid-column: auto;
  }
}
.offer-form .form-bottom {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.offer-form .form-bottom button {
  padding: 15px 60px;
}

@media (max-width: 768px) {
  .offer-form .form-bottom button {
    width: 100%;
  }
}
/* OFFER FORM END */

/* CAREER FORM START */
.career-form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

@media (max-width: 768px) {
  .career-form {
    display: flex;
    flex-direction: column;
  }
}

.career-form .form-group {
  grid-column: span 6;
}
@media (max-width: 768px) {
  .career-form .form-group {
    grid-column: auto;
  }
}
.career-form .form-group-full {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .career-form .form-group-full {
    grid-column: auto;
  }
}
.career-form .form-bottom {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.career-form .form-bottom button {
  padding: 15px 60px;
}

@media (max-width: 768px) {
  .career-form .form-bottom button {
    width: 100%;
  }
}

/* Select - form stil uyumu */
form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

form select:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* File input - Özel stil */
.file-input-wrapper {
  width: 100%;
}

.file-input-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px dashed #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.file-input-label:hover {
  border-color: var(--primary-color);
  background: rgba(8, 145, 178, 0.04);
}

.file-input-label:has(input:focus),
.file-input-label.focused {
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.file-input-label input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.file-input-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 15px;
}

.file-input-placeholder i {
  font-size: 20px;
  color: var(--primary-color);
}

.file-input-selected {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.file-input-selected i {
  font-size: 16px;
}

.file-input-label.has-file .file-input-placeholder {
  display: none;
}

.file-input-label.has-file .file-input-selected {
  display: flex;
}

.file-input-wrapper .file-hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
}

/* Kariyer sayfası - sol sütun yoksa form tam genişlik */
.contact-page-right.full-width {
  grid-column: 1 / -1;
}

/* CAREER FORM END */

/* WHATSAPP FIXED START */
.wp-img {
  color: #fff;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.mypage-alo-ph-circle {
  width: 90px;
  height: 90px;
  top: 12px;
  left: 12px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  opacity: 0.5;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mypage-alo-ph-circle-fill {
  width: 60px;
  height: 60px;
  top: 28px;
  left: 28px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.4 !important;
}

.mypage-alo-ph-img-circle {
  width: 30px;
  height: 30px;
  top: 43px;
  left: 43px;
  position: absolute;
  background: rgba(30, 30, 30, 0.1)
    url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.inetmar.com%2Fblog%2Fweb-sitesine-whatsapp-butonu-ekleme%2F&psig=AOvVaw24o_fVXdJxPaz-ZYw6fVc_&ust=1728734068863000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCKi3trKihokDFQAAAAAdAAAAABAE)
    no-repeat center center;
  background-size: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-size: 100%;
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.header .container {
  position: relative;
}

.mypage-alo-phone {
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: 9999999;
}

.mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.hotlinemp {
  position: fixed;
  right: 139px;
  bottom: 130px;
  z-index: 9999;
}

@media (max-width: 992px) {
  .hotlinemp {
    display: none;
  }
}

/* WHATSAPP FIXED END*/

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 4;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-color);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* VIDEO SECTION START */

.video {
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Arka plan video */
.video video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  pointer-events: none;   /* Videonun click yakalamasını engeller */
  position: relative;
  z-index: 1;
}

/* Koyu overlay */
.video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;  /* Overlay click'i engellemez */
}

/* Tıklanabilir içerik */
.video-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-text);
  font-size: 32px;
  font-weight: bold;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  cursor: pointer;
  pointer-events: auto;   /* BURASI ÇOK ÖNEMLİ */
}

/* Play ikonu */
.play-icon {
  font-size: 40px;
  color: white;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Pulse animasyon */
.play-icon::before,
.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse1 2s infinite;
  z-index: -1;
}

.play-icon::after {
  animation-delay: 1s;
}

@keyframes pulse1 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

/* POPUP */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* VIDEO SECTION END */