/* reqire grid.css */
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap);
@import "reset.css";
@import "grid.css";

html {
  --primary: #000;
  --secondary: #feee15;
  --secondary-dark: #cdc00e;
  --light: #f9f9f9;
  --light-2: #dcdee2;
  --light-3: #b9bcc2;
  --white-bg: #fff;
  --dark-txt: #555;
  --dark-o: 34, 41, 47;

  --light-blue: #d2d3ba;
}

/* Header */
header {
  border-bottom: 1px solid #f3f3f3;
  padding: 30px 0;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header .logo {
  display: flex;
  align-items: center;
  border-right: 1px solid #f3f3f3;
  padding-right: 2rem;
}
header .logo img {
  height: 52px;
}

header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
header .menu nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
header .menu nav > ul > li {
  position: relative;
  display: flex;
}
header .menu nav > ul > li > a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
}
header .menu nav > ul > li:has(> ul) > a::after {
  --size: 7px;
  content: "";
  display: inline-block;
  width: var(--size);
  height: var(--size);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-2px);
}
header .menu nav > ul > li > a::before {
  content: "";
  position: absolute;
  background: #feee15;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
header .menu nav > ul > li > a:hover::before,
header .menu nav > ul:not(:has(> li > a:hover)) > li > a.active::before,
header .menu nav > ul > li > a:has(+ ul:hover)::before {
  width: 100%;
}
header .menu nav > ul > li > ul {
  padding: 5px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
  min-width: 100%;
  list-style: none;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
header .menu nav > ul > li a:hover + ul,
header .menu nav > ul > li > ul:hover {
  opacity: 1;
  pointer-events: all;
}

header .menu nav > ul > li > ul > li > a {
  color: #000;
  display: flex;
  padding: 8px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
header .menu nav > ul > li > ul > li > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 80%;
  transform: translateY(-50%);
  height: 0;
  border-top: 2px solid #feee15;
  transition: all 0.3s ease;
  width: 0;
}
header .menu nav > ul > li > ul > li > a:hover::before,
header
  .menu
  nav
  > ul
  > li
  > ul:not(:has(> li > a:hover))
  > li
  > a.active::before {
  width: 100%;
}
header .menu .close-nav-btn {
  position: absolute;
  top: 21px;
  right: 20px;
  line-height: 1;
  padding: 0;
  display: flex;
  font-size: 26px;
  background-color: transparent;
  border: none;
  outline: none;
  z-index: 3;
  cursor: pointer;
}
header .menu .bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
header .menu .bg-layers span {
  flex: 1;
  background-color: var(--secondary);
  transition: 0.4s;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
}
header .menu .bg-layers > span:first-child {
  width: 0%;
}
header .menu .bg-layers > span:first-child::after,
header .menu .bg-layers > span:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  transition: 0.4s 0.3s;
  background-color: #fff;
}
header .menu .bg-layers > span:last-child {
  width: 0%;
  right: 4px;
}
header.active .menu .bg-layers > span:first-child::after {
  width: 100%;
}
header.active .menu .bg-layers > span:first-child,
header.active .menu .bg-layers > span:last-child {
  width: 50%;
}
header.active .menu .bg-layers > span {
  opacity: 1;
}
header.active .menu .bg-layers > span:last-child::after {
  width: 100%;
}

header .actions {
  display: flex;
  align-items: center;
  border-left: 1px solid #f3f3f3;
  padding-left: 1rem;
  justify-content: flex-end;
  gap: 10px;
}
header .actions .mobile-toggle {
  padding: 0;
  display: flex;
  line-height: 1;
  font-size: 28px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Ana Sayfa Servisler */
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 2fr));
  gap: 20px;
  margin-top: 5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-title {
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.languages {
  position: relative;
}
.languages button {
  background-color: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  color: inherit;
}
.languages .active {
  width: fit-content;
  padding: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
  background-color: var(--white-bg);
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 13px;
  min-width: 68px;
}
.languages .active:hover {
  background-color: var(--light);
}
.languages .active img {
  height: 20px;
  aspect-ratio: 1;
}
.languages .active i {
  transition: all 0.2s ease;
}
.languages:has(.list.open) .active i {
  transform: rotate(180deg);
}
.languages .list {
  border: 1px solid var(--light-2);
  width: 100px;
  position: absolute;
  top: calc(100% + 30px);
  background-color: var(--white-bg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.languages .list.open {
  top: calc(100% + 10px);
  opacity: 1;
  pointer-events: all;
}
.languages .list > button {
  font-size: 13px;
  padding: 10px 5px 10px 15px;
  display: flex;
  gap: 5px;
  align-items: center;
  background-color: var(--white-bg);
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
}
.languages .list > button:hover {
  background-color: var(--light);
}
.languages .list > button:not(:last-child) {
  border-bottom: 1px solid var(--light-2);
}
.languages .list > button img {
  height: 15px;
  aspect-ratio: 1;
}

/* Home Page */
.home-1 {
  padding: 5rem 0;
}
.home-1 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-1 .container .image {
  width: 100%;
  max-width: 40%;
  margin-left: 20%;
  display: flex;
  position: relative;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.home-1 .container .image::before {
  content: "";
  position: absolute;
  bottom: -18%;
  right: -34%;
  width: 86%;
  height: 100%;
  opacity: 0.2;
  transform: rotate(-45deg);
  z-index: 2;
}
.home-1 .container .image::before {
  background-image: url(/view/frontend/assets/img/coffee.svg);
  background-size: cover;
  background-position: bottom;
}
.home-1 .container .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  opacity: 0;
  transition: all 0.3s ease;
}
.home-1 .container .image:hover::after {
  opacity: 1;
}
.home-1 .container .image .holder {
  border: 7px solid #f8f9fa;
  position: absolute;
  height: 100%;
  width: 75%;
  right: 0;
}
.home-1 .container .image img {
  position: absolute;
  height: 90%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  opacity: 0.9;
}
.home-1 .container .image .holder p {
  font-size: 1.6rem;
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-weight: 400;
  width: 40%;
  z-index: 99;
  text-align: left;
}

.home-1 .container .content small {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #333;
}
.home-1 .container .content h1 {
  font-size: 1.6321111rem;
}
.home-1 .container .content p {
  font-size: 1.1rem;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.home-1 .container .content p + p {
  font-size: 0.9rem;
  border: none;
}

@media screen and (min-width: 992px) {
  header .menu .close-nav-btn,
  header .menu nav > ul > li > ul .h,
  header .menu .bg-layers,
  header .actions .mobile-toggle {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  body:has(header.active) {
    overflow: hidden;
  }
  header {
    padding: 20px 0;
  }
  header .logo {
    border-right: none;
    padding: 0;
  }
  header .logo img {
    height: 30px;
  }
  header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 999;
    align-items: flex-start;
    padding-top: 71px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  header.active .menu {
    opacity: 1;
    pointer-events: all;
  }
  header .menu nav {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  header .menu nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  header .menu nav > ul > li {
    width: 100%;
  }
  header .menu nav > ul li a {
    transition: all 0.2s ease;
  }
  header .menu nav > ul li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header .menu nav > ul > li > a {
    width: 100%;
    padding: 13px 20px;
    font-weight: 500;
    font-size: 14px;
    justify-content: space-between;
  }
  header .menu nav > ul > li:has(> ul) > a::after {
    transform: rotate(-45deg) translateY(-2px);
  }
  header .menu nav > ul > li > a::before {
    display: none;
  }
  header .menu nav > ul > li > ul {
    transform: translateX(100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    opacity: 1;
    pointer-events: all;
    z-index: 2;
    padding: 0;
    display: flex;
    transition: all 0.3s ease;
  }
  header .menu nav > ul > li.open > ul {
    transform: translateX(0);
  }
  header .menu nav > ul > li > ul > li > a {
    width: 100%;
    padding: 13px 20px;
    font-weight: 500;
    font-size: 14px;
    justify-content: space-between;
  }
  header .menu nav > ul > li > ul > li > a::before {
    display: none;
  }
  header .menu nav > ul > li > ul .h {
    height: 71px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 20px;
    border-bottom: 1px solid #f9f9f9;
    gap: 10px;
  }
  header .menu nav > ul > li > ul .h button {
    display: flex;
    line-height: 1;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 28px;
    cursor: pointer;
  }
  header .menu nav > ul > li > ul .h strong {
    font-weight: 500;
  }
}

/* Form Element */
.input-baykus {
  padding: 0.5rem 1rem;
  border: 1px solid #eee;
  outline: none;
  font-size: 0.9rem;
}
.button-baykus {
  text-decoration: none;
  padding: 0.5rem 2rem;
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all .2s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.button-baykus:hover {
  background-color: #333;
}
.button-baykus.two {
  background-color: #feee15;
  color: #000;
}
.button-baykus.two:hover {
  background-color: black;
  color: #fff;
}

.button-baykus.three {
  background-color: #e7e9ed;
  color: #000;
}
.button-baykus.three:hover {
  background-color: #d5dcde;
  color: #000;
}

/* link effect */
.link-1 {
  color: #000000;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-decoration-color: #feee15;
}
.link-1:hover {
  box-shadow: inset 100px 0 0 0 #feee15;
  color: black;
}
.link-2 {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.link-2::before,
.link-2::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
.link-2::before {
  background-color: #feee15;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.link-2::after {
  content: attr(name);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.link-2:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.link-2:hover::after {
  transform: translate3d(0, 0, 0);
}
.link-2 span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.link-2:hover span {
  transform: translate3d(-200%, 0, 0);
}
.link-3 {
  position: relative;
  color: black;
  text-decoration: none;
  margin-left: 0.5rem;
}
.link-3:hover::before {
  bottom: 0;
  height: 100%;
}
.link-3::before {
  content: "";
  background-color: #feee15;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 3px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

/* Footer */
footer {
  padding: 4rem 0;
  font-size: 0.8rem;
}
footer .logo img {
  height: 1rem;
}
footer .description p {
  font-size: 0.8rem;
  margin-top: 1rem;
  text-align: left;
}
footer .contact {
  margin-top: 3rem;
}
footer .contact div {
  font-weight: 700;
}
footer .contact div + div {
  font-weight: 400;
  font-size: 0.8rem;
}
footer .menu .title {
  position: relative;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1rem;
}
footer .menu .title::after {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background: #feee15;
  margin: 1rem 0;
}
footer .menu a {
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  display: table;
  font-size: 0.8rem;
}
footer .copyright {
  margin-top: 3rem;
}
footer .copyright .text {
  font-size: 0.8rem;
}
footer .copyright .policy {
  text-align: end;
}

.newsletter-bg {
  background-color: #f8f9fa;
  padding: 4rem 0;
  margin-top: 4rem;
}
.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsletter .title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.newsletter .description {
  font-weight: 400;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 1024px) {
  footer .copyright .text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
  }
  .home-1 .container {
    flex-direction: column;
  }
  .home-1 .container .image {
    max-width: 100%;
    margin-left: 0%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .home-1 .container .image .holder p {
    font-size: 1.5rem;
    position: absolute;
    right: 0rem;
    top: 1.5rem;
    font-weight: 400;
    width: 52%;
    z-index: 99;
  }
  .home-1 .container .content p {
    font-size: 1.2rem;
  }
  .home-1 {
    padding: 2rem 0;
  }

  
  .newsletter { display: flex; align-items: baseline; flex-direction: column; gap: 1rem;}
  .newsletter > div{ width: 100%;}
  .newsletter .title{ font-size: 1.6rem;}

  .bulten-baykus,
  .bulten-baykus input{ width: 100%;}
}



.page-heading {
  padding-top: 50px;
  padding-bottom: 25px;
}

.page-heading .title {
  font-weight: 700;
  color: #000000
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: .75rem;
  gap: .5rem;
  margin-bottom: .3rem;
  margin-left: 0;
  padding: 0;
}

.breadcrumb-item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.breadcrumb-item a {
  color: #000;
  text-decoration: none;
  transition: all .3s ease
}

.breadcrumb-item::after {
  content: "\f30b";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 1.3rem;
  position: relative;
  line-height: 0;
  margin: 0 .5rem;
  width: 1rem
}

.breadcrumb-item:last-child::after {
  content: unset
}

.page-section {
  padding-bottom: 4rem
}

.page-section p {
  padding-bottom: 1.5rem
}


.service-list .row .col-sm-4 {
  margin-bottom: 20px;
}
.service-list .row .col-sm-4 .image {
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.service-list .row .col-sm-4 .image img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.service-list .row .col-sm-4 .title {
  margin-top: 10px;
  color: #000;
}
.service-list .row .col-sm-4 .title h3 {
  font-size: 1rem;
  font-weight: 700;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.service-list .row .col-sm-4 .description {
  margin-top: 10px;
  color: #000;
  font-size: .9rem;
  text-align: justify;
  margin-top: 15px;
}
.service-list .row .col-sm-4 a {
  display: block;
  text-decoration: none;
}
.service-list .row .col-sm-4 a:hover .image img {
  transform: scale(1.1);
}
.service-list .row .col-sm-4 .title h3 {
  transition: all 0.3s ease;
  position: relative; /* After pseudo-element is positioned relative to h3 */
  margin: 0;
}

.service-list .row .col-sm-4 .title h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  width: 0;
  height: 2px;
  background-color: #feee15;
  transition: 0.3s;
}



.service-list .row .col-sm-4 a:hover .title h3::after {
  width: 100%; /* Full width when hovered */
  right: 0;
  bottom: 0%;
}



.domain-sorgulama-form .mx-auto {
  display: flex;
  align-items: center;
  justify-content: center;
}
.domain-sorgulama-form .input-baykus {
  width: 100%;
}
.domain-sorgulama-form .input-baykus , .domain-sorgulama-form .button-baykus {
  height:4rem;
}
.domain-sorgulama-form .input-baykus {
  border: 1px solid #000;
}
.domain-list .list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  transition: .4s ease;
  height: 100%;
  padding: 16px;
}
.domain-list .list-item img {
  width: 100%;
  max-width: 80px;
}
.domain-list .list-item * {
  user-select: none;
}
.domain-list .list-item span {
  margin-top: 15px;
  font-size: 14px;
}

.breadcrumb-center { text-align: center; }
.breadcrumb-center .breadcrumb { justify-content: center; }


.domain-result {display: flex;width: 100%;align-items: center;justify-content: space-between;box-shadow: 0px 0px 15px #f3f3f3;padding: 1.5rem;margin-top: 2rem;}
.domain-result .icon {font-size: 2rem;color: green;}
.domain-result .status { flex: 1; margin-left: 1rem; font-size: 1.3rem; color: green; }
.domain-result .domain {font-size: 1.2rem;cursor: pointer;}
.domain-result.red .icon , .domain-result.red .status {color: red;}


@keyframes spin {
  0% {
      transform: rotate(0)
  }

  100% {
      transform: rotate(360deg)
  }
}

.ajax-form.loading {
  position: relative;
}
.ajax-form.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999
}

.ajax-form.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 2px solid #000;
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: 1s linear infinite spin;
  z-index: 1000
}

p {
  font-size:0.9rem;
  margin-bottom: 1rem
}

ul , ol{
  margin-bottom: 1rem
}


.bulten-baykus{ display: flex; gap: 10px;}
.bulten-baykus > *{ height: 35px;}



.container.detail ul { margin-bottom: 2rem; }

.container.detail {text-align: justify; font-size: 0.9rem;}
.container.detail p {font-size: 0.9rem;margin-bottom: 2rem;}


.project-list {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.project-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-list .project-list-item {
  display: flex;
  transition: .4s ease;
}

.project-list .project-list-item *:not(a) {
  user-select: none;
  padding: 0;
}

.project-list .project-list-item:hover {
  box-shadow: 0 0 0 10px var(--secondary)
}

.project-list .item-left {
  flex: 0 0 400px;
  overflow: hidden;
}

.project-list .item-left img {
  width: 100%;
  height: 100%;
}

.project-list .item-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  flex: 1;
}

.project-list .item-right > img{ width: 100%; height: 100%; object-fit: cover;}

.project-list .bgrig > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.project-list .item-right .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: rgb(0 0 0 / 50%);
  color: white;
  font-size: 1rem;
  padding: 2rem 2.5rem;
}

.project-list .item-right .content .features li {
  position: relative;
}

.project-list .item-right .content .features li::before {
  position: relative;
  content: '+';
  color: var(--secondary);
  margin-right: .5rem;
}

.project-list .item-right .content-left .bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2.5rem;
}

.project-list .item-right .content-left .bottom .web-link {
  color: var(--secondary);
}

.project-list .item-right .content-left .bottom .detail-link {
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .25rem 1.25rem;
  font-size: 1rem;
  margin-top: .75rem;
  transition: .4s ease;
  color: black;
}

.project-list .item-right .content-left .bottom .detail-link:hover {
  background-color: var(--secondary);
}

.project-list .item-right .content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

.project-list .item-right .content-right .social {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  margin-top: auto;
}

.project-list .item-right .content-right .social h6 {
  font-size: 1rem;
  font-weight: 300
}

.project-list .item-right .content-right .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: .5rem
}

.project-list .item-right .content-right .social-list li {
  margin-left: .5rem
}

.project-list .item-right .content-right .social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: white;
  border-radius: 100%;
  font-size: 1rem;
  transition: .4s ease;
  color: black;
}
.project-list a { 
  text-decoration: none;
 }

.project-list .item-right .content-right .social-list li:hover a {
  background: var(--secondary)
}


@media (min-width: 320px) and (max-width: 1199px) {
  .project-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 2rem;
  }

  .project-list .project-list-item {
      flex-direction: column;
      height: 700px;
  }

  .project-list .item-right {
      flex: 1;
  }

  .project-list .item-left {
      flex: 0 0 300px;
  }

  .project-list .item-right .content {
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
  }

  .project-list .item-right .content-left {
      width: 100%;
      text-align: center;
  }

  .project-list .item-right .content-right {
      justify-content: flex-start;   
  }

  .project-list .item-right .content-left .bottom {
      align-items: stretch;
      justify-content: flex-end;
      margin-top: 1.5rem
  }

  .project-list .item-right .content-right .social {
      display: none;
  }

  .project-list .item-right .content .features li {
      text-align: center;
  }

  .project-list .item-right .content .features li::before {
      position: absolute;
      left: 0;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .project-list {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
  }
}


@media (min-width: 320px) and (max-width: 767px){
  .item-left { display: none; }
  .project-list .project-list-item {
      height: 300px;
  }
}
@media (min-width: 320px) and (max-width: 767px){
.domain-result {
  flex-direction: column;
}
.domain-result .status {
  margin-left: 0;
}
}




.whatsapp{ display: flex; align-items: center; gap: 3px; color: inherit; text-decoration: none;}
.whatsapp{ --clr: #01b343;}
/* .whatsapp i{ --size: 20px; font-size: 15px; width: var(--size); height: var(--size); min-width: var(--size); border-radius: 50%; background-color: var(--clr); color: #fff; display: flex; align-items: center; justify-content: center;} */
.whatsapp i{ font-size: 23px; color: var(--clr); display: flex; align-items: center; justify-content: center;}
.whatsapp span{font-size: 14px;line-height: 1;display: inline-block;position: relative;font-weight: 500;}
/* .whatsapp span::before{ content: ''; display: inline-block; position: absolute; left: 0; top: 100%; transform: translateY(-100%); height: 1px; width: 0px; transition: all .3s ease; background-color: var(--clr);}
.whatsapp:hover span::before{ width: 100%;} */





.contact-container { display: flex; gap: 100px;}
.contact-container > .l { width: 100%;}
.contact-container > .r { width: 350px; min-width: 355px;}


.contact-info > strong{ font-size: 18px; font-weight: 500; margin-bottom: 10px; display: inline-block;}
.contact-info .content { display: flex; flex-direction: column; gap: 25px;}
.contact-info .content > div { display: flex; flex-direction: column; gap: 3px;}
.contact-info .content > div > b { font-size: 13px; font-weight: 500; color: #999;}
.contact-info .content > div > p {font-size: 0.9rem;font-weight: 500;margin: 0;}
.contact-info .content > div > p a{ color: inherit; text-decoration: none;}


.iframe{ width: 100%; height: 400px;}


.align-right{ display: flex; justify-content: flex-end;}


.input-template{ display: flex; flex-direction: column;}
.input-template label{ font-size: 13px; margin-bottom: 6px; color: #555;}
.input-template label span{ color: red; font-weight: 600;}
.input-template :is(input, select, textarea){ border: 1px solid #eee; border-radius: 0; width: 100%; height: 40px; padding: 0 10px; font-size: 13px; transition: .3s ease; outline: none;}
.input-template :is(input, select, textarea):hover{ border-color: #ccc;}
.input-template :is(input, select, textarea):focus{ border-color: #666;}
.input-template textarea{ height: 165px; padding: 10px; resize: none;}


@media screen and (max-width: 1280px) {
  .contact-container{ flex-direction: column; gap: 50px;}
  .contact-container > .r{ width: 100%; min-width: unset;}
}

/* Contact Page Styles */

/* Contact Hero */
.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.contact-hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.contact-hero-content {
    flex: 1;
}
.contact-hero-content small {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
}
.contact-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 15px 0 20px 0;
    line-height: 1.2;
}
.contact-hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}
.contact-hero-image {
    flex: 1;
    position: relative;
}
.contact-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-badge i {
    font-size: 1.5rem;
    color: #feee15;
    background: #222;
    padding: 10px;
    border-radius: 50%;
}
.contact-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: #fff;
}
.contact-item {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #feee15 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.contact-icon i {
    font-size: 2.5rem;
    color: #333;
}
.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}
.contact-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}
.contact-item a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: #feee15;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}
.contact-form-wrapper > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}
.contact-form .form-group {
    margin-bottom: 25px;
}
.contact-form label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}
.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}
.contact-form .form-control:focus {
    border-color: #feee15;
    box-shadow: 0 0 0 0.2rem rgba(254, 238, 21, 0.25);
    outline: none;
}
.contact-form .form-control::placeholder {
    color: #adb5bd;
}
.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}
.contact-form .form-check-input {
    margin-top: 2px;
}
.contact-form .form-check-label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}
.contact-form .form-check-label a {
    color: #222;
    text-decoration: underline;
}
.contact-form .btn {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: #feee15;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 34, 34, 0.3);
}
.contact-form .btn i {
    font-size: 1.2rem;
}

/* Contact FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: #fff;
}
.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #feee15;
}
.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}
.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Work Process Section */
.work-process {
    padding: 80px 0;
    background: #f8f9fa;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.process-step {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: #feee15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
}
.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}
.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Process Step Connectors */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero .container {
        flex-direction: column;
        gap: 30px;
    }
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    .contact-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    .contact-form-wrapper {
        padding: 35px;
    }
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
    .contact-form-wrapper h2 {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .contact-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-form .btn {
        width: 100%;
        justify-content: center;
    }
    .faq-item {
        padding: 20px;
    }
    .process-step {
        padding: 25px 20px;
    }
}

/* Home Page Sections */

/* Home References Section */
.home-references {
  padding: 5rem 0;
  background-color: var(--light);
}

.home-references .references-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.home-references .references-desc {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-txt);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-references .reference-item {
  background: var(--white-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.home-references .reference-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.home-references .reference-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.home-references .reference-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 1rem 0.5rem;
  color: var(--primary);
}

.home-references .reference-item p {
  padding: 0 1rem 1.5rem;
  color: var(--dark-txt);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-references .references-controls-holder {
  text-align: center;
  margin-top: 2rem;
}

/* Home Services Section */
.home-services {
  padding: 5rem 0;
  background-color: var(--white-bg);
}

.home-services .services-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.home-services .services-desc {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-txt);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-services .service-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: var(--white-bg);
  margin-bottom: 2rem;
}

.home-services .service-item:hover {
  background-color: var(--light);
  transform: translateY(-5px);
}

.home-services .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.home-services .service-item:hover .service-icon {
  background-color: var(--primary);
  color: var(--white-bg);
}
.home-services .service-item:hover .service-icon i{
  color: inherit;
}

.service-icon i{
  color: var(--white-bg) !important;
}

.home-services .service-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.home-services .service-item:hover .service-icon i {
  color: var(--white-bg);
}

.home-services .service-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.home-services .service-item p {
  color: var(--dark-txt);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Home Testimonials Section */
.home-testimonials {
  padding: 5rem 0;
  background-color: var(--light);
}

.home-testimonials .testimonials-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.home-testimonials .testimonials-desc {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-txt);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-testimonials .testimonial-item {
  background: var(--white-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin: 0 15px;
}

.home-testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.home-testimonials .testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.home-testimonials .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.home-testimonials .testimonial-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.home-testimonials .testimonial-role {
  font-size: 0.9rem;
  color: var(--dark-txt);
}

.home-testimonials .testimonial-rating {
  margin-bottom: 1rem;
}

.home-testimonials .testimonial-rating i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-right: 2px;
}

.home-testimonials .testimonial-text {
  color: var(--dark-txt);
  line-height: 1.6;
  font-size: 0.95rem;
  font-style: italic;
}

.home-testimonials .testimonials-controls-holder {
  text-align: center;
  margin-top: 2rem;
}

/* Home Blog Section */
.home-blog {
  padding: 5rem 0;
  background-color: var(--white-bg);
}

.home-blog .blog-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.home-blog .blog-desc {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-txt);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-blog .blog-card {
  margin-bottom: 2rem;
}

.home-blog .blog-card .blog-image {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 200px;
}

.home-blog .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.home-blog .blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.home-blog .blog-card .blog-content {
  background: var(--white-bg);
  padding: 1.5rem;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.home-blog .blog-card:hover .blog-content {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.home-blog .blog-card .blog-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary);
  line-height: 1.4;
}

.home-blog .blog-card .blog-content p {
  color: var(--dark-txt);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.home-blog .blog-readmore {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.home-blog .blog-readmore::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--secondary);
  transition: all 0.3s ease;
}

.home-blog .blog-readmore:hover::after {
  width: 100%;
}

.home-blog .blog-readmore:hover {
  color: var(--primary);
}

/* Swiper Pagination Styles */
/* .swiper-pagination-bullet {
  background-color: var(--light-3) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary) !important;
  transform: scale(1.2) !important;
} */

/* About Page Styles */

/* About Hero Section */
.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #e9ecef 100%);
}

.about-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-hero-content {
  flex: 1;
}

.about-hero-content small {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--dark-txt);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.about-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0 25px 0;
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: var(--dark-txt);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-hero-image {
  flex: 1;
  position: relative;
}

.about-hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.about-hero-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-stats {
  position: absolute;
  bottom: -30px;
  left: 30px;
  display: flex;
  gap: 20px;
}

.stat-item {
  background: var(--white-bg);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--dark-txt);
  font-weight: 500;
  margin: 0;
}

/* About Mission Section */
.about-mission {
  padding: 80px 0;
  background: var(--white-bg);
}

.mission-item {
  text-align: center;
  padding: 40px 30px;
  margin-bottom: 30px;
  background: var(--white-bg);
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  background: var(--light);
}

.mission-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--secondary) 0%, #ffd700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: all 0.3s ease;
}

.mission-item:hover .mission-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
  transform: scale(1.1);
}

.mission-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.mission-item:hover .mission-icon i {
  color: var(--secondary);
}

.mission-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.mission-item p {
  font-size: 1rem;
  color: var(--dark-txt);
  line-height: 1.7;
  margin: 0;
}

/* About Why Section */
.about-why {
  padding: 80px 0;
  background: var(--light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-desc {
  font-size: 1.2rem;
  text-align: center;
  color: var(--dark-txt);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-list {
  margin-top: 30px;
}

.why-list .col-md-4 {
  margin-bottom: 30px;
}

.why-item {
  background: var(--white-bg);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 2px solid transparent;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-color: var(--secondary);
}

.why-icon {
  width: 75px;
  height: 75px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  background: var(--secondary);
  transform: scale(1.1);
}

.why-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.why-item:hover .why-icon i {
  color: var(--primary);
  transform: scale(1.1);
}

.why-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--dark-txt);
  line-height: 1.6;
  margin: 0;
}

/* About Values Section */
.about-values {
  padding: 80px 0;
  background: var(--white-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  background: var(--white-bg);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--light-2);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transition: all 0.3s ease;
}

.value-item:hover::before {
  left: 0;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: var(--secondary);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: var(--secondary);
  transform: scale(1.1) rotate(5deg);
}

.value-icon i {
  font-size: 2.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
  color: var(--primary);
}

.value-item h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.value-item p {
  font-size: 1rem;
  color: var(--dark-txt);
  line-height: 1.6;
  margin: 0;
}

/* About Team Section */
.about-team {
  padding: 80px 0;
  background: var(--light);
}

.team-info h3,
.team-skills h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.team-info p {
  font-size: 1rem;
  color: var(--dark-txt);
  line-height: 1.7;
  margin-bottom: 15px;
}

.team-skills {
  padding-left: 30px;
}

.skill-items {
  margin-top: 25px;
}

.skill-item {
  margin-bottom: 25px;
}

.skill-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.skill-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 4px;
  transition: width 2s ease;
  position: relative;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(45deg, 
    transparent 33%, 
    rgba(255,255,255,0.3) 33%, 
    rgba(255,255,255,0.3) 66%, 
    transparent 66%);
  background-size: 30px 30px;
  animation: moveStripes 2s linear infinite;
}

@keyframes moveStripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}

/* About Process Section */
.about-process {
  padding: 80px 0;
  background: var(--white-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.process-step {
  background: var(--white-bg);
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--secondary);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--secondary) 0%, #ffd700 100%);
  color: var(--primary);
  transform: scale(1.1) rotate(360deg);
}

.step-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.step-content p {
  font-size: 1rem;
  color: var(--dark-txt);
  line-height: 1.6;
  margin: 0;
}

/* Process Step Connectors */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  z-index: 1;
  transform: translateY(-50%);
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light) 0%, #e9ecef 100%);
}

.services-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.services-hero-content {
  flex: 1;
}

.services-hero-content small {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--dark-txt);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.services-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0 25px 0;
  line-height: 1.2;
}

.services-hero-content p {
  font-size: 1.1rem;
  color: var(--dark-txt);
  margin-bottom: 20px;
  line-height: 1.7;
}

.services-hero-image {
  flex: 1;
  position: relative;
}

.services-hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.services-hero-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.services-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--primary);
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.services-badge:hover {
  transform: scale(1.05);
}

.services-badge i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

.services-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Main Services Section */
.main-services {
  padding: 80px 0;
  background: var(--white-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white-bg);
  border: 2px solid var(--light-2);
  border-radius: 15px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.service-card.featured {
  border-color: var(--secondary);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border-color: var(--secondary);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #ffd700 100%);
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card > p {
  font-size: 1rem;
  color: var(--dark-txt);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-btn {
  background: var(--primary);
  color: var(--white-bg);
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.service-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Packages Comparison Section */
.packages-comparison {
  padding: 80px 0;
  background: var(--light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: var(--white-bg);
  border: 2px solid var(--light-2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.package-card.featured {
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  border-color: var(--secondary);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-header h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.package-price {
  margin-bottom: 30px;
}

.package-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.package-price .period {
  font-size: 1rem;
  color: var(--dark-txt);
  margin-top: 5px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.package-features li {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--dark-txt);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--light);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: #28a745;
  font-size: 1.2rem;
  min-width: 20px;
}

.package-btn {
  background: var(--primary);
  color: var(--white-bg);
  padding: 15px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.package-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Technologies Section */
.technologies {
  padding: 80px 0;
  background: var(--white-bg);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tech-item {
  background: var(--white-bg);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--light-2);
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--secondary);
}

.tech-icon {
  width: 70px;
  height: 70px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
  background: var(--secondary);
  transform: scale(1.1);
}

.tech-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.tech-item:hover .tech-icon i {
  color: var(--primary);
}

.tech-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.tech-item p {
  font-size: 0.9rem;
  color: var(--dark-txt);
  margin: 0;
}

/* Services CTA Section */
.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
  color: var(--white-bg);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-bg);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn.primary {
  background: var(--secondary);
  color: var(--primary);
}

.cta-btn.primary:hover {
  background: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 238, 21, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--white-bg);
  border: 2px solid var(--white-bg);
}

.cta-btn.secondary:hover {
  background: var(--white-bg);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Services Page */
@media (max-width: 992px) {
  .services-hero .container {
    flex-direction: column;
    gap: 40px;
  }
  
  .services-hero-content h1 {
    font-size: 2.3rem;
  }
  
  .services-badge {
    position: static;
    margin-top: 30px;
    display: inline-block;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 60px 0;
  }
  
  .services-hero-content h1 {
    font-size: 2rem;
  }
  
  .main-services,
  .packages-comparison,
  .technologies,
  .services-cta {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid,
  .packages-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .services-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card,
  .package-card {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 2rem;
  }
}

/* Flying Owl Effect */
.flying-owl {
  position: fixed;
  width: 60px;
  height: 60px;
  z-index: 9999;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.8;
  transform-origin: center;
}

.flying-owl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.flying-owl.flapping {
  animation: flap 0.5s ease-in-out;
}

.flying-owl.scared {
  animation: scared 0.8s ease-out;
}

@keyframes flap {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-2deg); }
  50% { transform: scale(1.05) rotate(1deg); }
  75% { transform: scale(1.1) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes scared {
  0% { transform: scale(1) rotate(0deg); }
  20% { transform: scale(1.3) rotate(-5deg); }
  40% { transform: scale(1.1) rotate(3deg); }
  60% { transform: scale(1.2) rotate(-2deg); }
  80% { transform: scale(1.05) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Hide on mobile for performance */
@media (max-width: 768px) {
  .flying-owl {
    display: none;
  }
}

.references-hero {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    .references-hero .container {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    .references-hero-content {
        flex: 2;
    }
    .references-hero-content small {
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 1px;
        color: #666;
        text-transform: uppercase;
    }
    .references-hero-content h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
        margin: 15px 0 20px 0;
        line-height: 1.2;
    }
    .references-hero-content p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    .references-hero-stats {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .stat-item {
        text-align: center;
        padding: 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #222;
        line-height: 1;
    }
    .stat-label {
        font-size: 0.9rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .references-list {
        padding: 80px 0;
        background: #fff;
    }
    .references-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        justify-content: center; /* Tek kartı ortala */
    }
    .reference-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        max-width: 400px; /* Maksimum genişlik */
        margin: 0 auto;    /* Ortala */
    }
    .reference-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    .reference-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    .reference-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .reference-card:hover .reference-image img {
        transform: scale(1.05);
    }
    .reference-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .reference-card:hover .reference-overlay {
        opacity: 1;
    }
    .view-reference {
        background: #fff;
        color: #333;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .view-reference:hover {
        background: #f8f9fa;
        transform: scale(1.05);
    }
    .reference-content {
        padding: 25px;
    }
    .reference-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #222;
        margin-bottom: 12px;
    }
    .reference-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .reference-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    .reference-date {
        font-size: 0.9rem;
        color: #999;
        font-weight: 500;
    }
    .reference-link {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }
    .reference-link:hover {
        color: #0056b3;
    }

/* Mobile Responsive Fixes for Home Sections */

/* Tablet and Mobile Responsive */
@media (max-width: 992px) {
  /* Home Hero Section */
  .home-1 {
    padding: 3rem 0;
  }
  
  .home-1 .container .content h1 {
    font-size: 2rem;
  }
  
  .home-1 .container .content small {
    font-size: 1.2rem;
  }
  
  .home-1 .container .image .holder p {
    font-size: 1.2rem;
    width: 60%;
  }
  
  /* Home References */
  .home-references .references-title {
    font-size: 2rem;
  }
  
  /* Home Services */
  .home-services .services-title {
    font-size: 2rem;
  }
  
  .home-services .row {
    gap: 20px;
  }
  
  .home-services .service-item {
    margin-bottom: 1.5rem;
  }
  
  /* Home Testimonials */
  .home-testimonials .testimonials-title {
    font-size: 2rem;
  }
  
  /* Home Blog */
  .home-blog .blog-title {
    font-size: 2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Home Hero Section */
  .home-1 {
    padding: 2rem 0;
  }
  
  .home-1 .container .content h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .home-1 .container .content small {
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
  }
  
  .home-1 .container .content p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .home-1 .container .image {
    aspect-ratio: 1;
    max-width: 80%;
    margin: 2rem auto 0;
  }
  
  .home-1 .container .image .holder p {
    font-size: 1rem;
    width: 70%;
    right: 0.5rem;
    top: 1rem;
  }
  
  /* Section Titles */
  .home-references .references-title,
  .home-services .services-title,
  .home-testimonials .testimonials-title,
  .home-blog .blog-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }
  
  /* Section Descriptions */
  .home-references .references-desc,
  .home-services .services-desc,
  .home-testimonials .testimonials-desc,
  .home-blog .blog-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  /* Home References */
  .home-references {
    padding: 3rem 0;
  }
  
  .home-references .reference-item h3 {
    font-size: 1.1rem;
    padding: 1rem 1rem 0.5rem;
  }
  
  .home-references .reference-item p {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
  }
  
  /* Home Services */
  .home-services {
    padding: 3rem 0;
  }
  
  .home-services .service-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .home-services .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .home-services .service-icon i {
    font-size: 1.5rem;
  }
  
  .home-services .service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .home-services .service-item p {
    font-size: 0.9rem;
  }
  
  /* Home Testimonials */
  .home-testimonials {
    padding: 3rem 0;
  }
  
  .home-testimonials .testimonial-item {
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .home-testimonials .testimonial-header {
    margin-bottom: 0.8rem;
    gap: 0.8rem;
  }
  
  .home-testimonials .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .home-testimonials .testimonial-header h3 {
    font-size: 1.1rem;
  }
  
  .home-testimonials .testimonial-role {
    font-size: 0.8rem;
  }
  
  .home-testimonials .testimonial-text {
    font-size: 0.9rem;
  }
  
  /* Home Blog */
  .home-blog {
    padding: 3rem 0;
  }
  
  .home-blog .blog-card {
    margin-bottom: 1.5rem;
  }
  
  .home-blog .blog-card .blog-image {
    height: 180px;
  }
  
  .home-blog .blog-card .blog-content {
    padding: 1.2rem;
  }
  
  .home-blog .blog-card .blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .home-blog .blog-card .blog-content p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 576px) {
  /* Home Hero Section */
  .home-1 {
    padding: 1.5rem 0;
  }
  
  .home-1 .container .content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .home-1 .container .content small {
    font-size: 0.9rem;
  }
  
  .home-1 .container .content p {
    font-size: 0.9rem;
  }
  
  .home-1 .container .image {
    max-width: 90%;
  }
  
  .home-1 .container .image .holder p {
    font-size: 0.9rem;
    width: 75%;
    right: 0.2rem;
    top: 0.8rem;
  }
  
  /* Section Titles */
  .home-references .references-title,
  .home-services .services-title,
  .home-testimonials .testimonials-title,
  .home-blog .blog-title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
  
  /* Section Descriptions */
  .home-references .references-desc,
  .home-services .services-desc,
  .home-testimonials .testimonials-desc,
  .home-blog .blog-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  /* All Sections */
  .home-references,
  .home-services,
  .home-testimonials,
  .home-blog {
    padding: 2.5rem 0;
  }
  
  /* Home Services */
  .home-services .service-item {
    padding: 1.2rem 0.8rem;
  }
  
  .home-services .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .home-services .service-icon i {
    font-size: 1.3rem;
  }
  
  /* Home Testimonials */
  .home-testimonials .testimonial-item {
    padding: 1.2rem;
    margin: 0 5px;
  }
  
  .home-testimonials .testimonial-avatar {
    width: 45px;
    height: 45px;
  }
  
  .home-testimonials .testimonial-header h3 {
    font-size: 1rem;
  }
  
  .home-testimonials .testimonial-role {
    font-size: 0.75rem;
  }
  
  .home-testimonials .testimonial-text {
    font-size: 0.85rem;
  }
  
  .home-testimonials .testimonial-rating i {
    font-size: 1rem;
  }
  
  /* Home Blog */
  .home-blog .blog-card .blog-image {
    height: 160px;
  }
  
  .home-blog .blog-card .blog-content {
    padding: 1rem;
  }
  
  .home-blog .blog-card .blog-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .home-blog .blog-card .blog-content p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
  
  .home-blog .blog-readmore {
    font-size: 0.8rem;
  }
  
  /* Home References */
  .home-references .reference-item h3 {
    font-size: 1rem;
    padding: 0.8rem 0.8rem 0.4rem;
  }
  
  .home-references .reference-item p {
    font-size: 0.85rem;
    padding: 0 0.8rem 0.8rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .home-1 .container .content h1 {
    font-size: 1.3rem;
  }
  
  .home-1 .container .image .holder p {
    font-size: 0.8rem;
    width: 80%;
  }
  
  .home-references .references-title,
  .home-services .services-title,
  .home-testimonials .testimonials-title,
  .home-blog .blog-title {
    font-size: 1.3rem;
  }
  
  .home-services .service-item {
    padding: 1rem 0.6rem;
  }
  
  .home-testimonials .testimonial-item {
    padding: 1rem;
  }
}

/* Swiper Responsive Adjustments */
@media (max-width: 768px) {
  .references-swiper .swiper-slide,
  .testimonials-swiper .swiper-slide {
    margin-right: 15px !important;
  }
  
  .swiper-pagination {
    bottom: -40px !important;
  }
  
  .references-controls-holder,
  .testimonials-controls-holder {
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  .references-swiper .swiper-slide,
  .testimonials-swiper .swiper-slide {
    margin-right: 10px !important;
  }
  
  .references-controls-holder,
  .testimonials-controls-holder {
    margin-top: 2.5rem;
  }
}

/* Button Responsive */
@media (max-width: 768px) {
  .button-baykus {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .button-baykus {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Additional Mobile Fixes */
@media (max-width: 768px) {
  /* Container padding fixes */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Text alignment helpers for mobile */
  .text-center-mobile {
    text-align: center !important;
  }
  
  /* Spacing helpers */
  .mb-mobile-2 {
    margin-bottom: 1rem !important;
  }
  
  .mb-mobile-3 {
    margin-bottom: 1.5rem !important;
  }
  
  .mt-mobile-2 {
    margin-top: 1rem !important;
  }
  
  .p-mobile-2 {
    padding: 1rem !important;
  }
  
  /* Fix overflow issues */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Smaller spacing on mobile */
  .mb-mobile-2 {
    margin-bottom: 0.75rem !important;
  }
  
  .mb-mobile-3 {
    margin-bottom: 1rem !important;
  }
  
  .mt-mobile-2 {
    margin-top: 0.75rem !important;
  }
  
  .p-mobile-2 {
    padding: 0.75rem !important;
  }
  
  /* Tighter grid on small mobile */
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
  
  .row > * {
    padding-left: 8px;
    padding-right: 8px;
  }
}


@media screen and (max-width: 768px){
  .home-1 .container .image .holder p{ font-size: 20px !important; width: 46%;}

  .about-hero .container,
  .references-hero .container{ flex-direction: column;}
  .references-hero-stats{ width: 100%;}
  .references-hero-stats{ width: 100%; flex-wrap: wrap; justify-content: center; flex-direction: row; gap: 20px;}
  .references-hero-stats .stat-item{ width: fit-content; min-width: 180px;}
  .team-skills{ padding-left: 0;}
}






 .car-item.card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: none !important;
        transform: translateY(0) scale(1);
        position: relative;
    }
    
    .car-item.card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,123,255,0.15), 0 0 0 1px rgba(0,123,255,0.1);
    }
    
    .car-item.card:hover .car-overlay {
        opacity: 1 !important;
    }
    
    .car-item.card:hover .car-badge {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    }
    
    .car-img-wrap {
        position: relative;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
    }
    
    /* Swiper.js Custom Styles */
    .car-swiper {
        width: 100%;
        border-radius: 0;
    }
    
    .car-swiper .swiper-slide {
        text-align: center;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .car-swiper .swiper-pagination {
        bottom: 15px !important;
    }
    
    .car-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(255,255,255,0.6);
        border: 1px solid rgba(255,255,255,0.9);
        opacity: 1;
        margin: 0 3px;
    }
    
    .car-swiper .swiper-pagination-bullet-active {
        background: #007bff;
        border-color: #007bff;
        box-shadow: 0 0 10px rgba(0,123,255,0.5);
        border: 0;
    }
    
    .car-swiper .swiper-button-next,
    .car-swiper .swiper-button-prev {
        color: #000000;
        background: var(--secondary);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .car-swiper .swiper-button-next:after,
    .car-swiper .swiper-button-prev:after {
        font-size: 16px;
        font-weight: bold;
    }
    
    .car-item.card:hover .swiper-button-next,
    .car-item.card:hover .swiper-button-prev {
        opacity: 1;
    }
    
    .car-swiper .swiper-button-next:hover,
    .car-swiper .swiper-button-prev:hover {
        background: var(--secondary);
        color: black;
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(0,123,255,0.4);
    }
    
    .car-title {
        transition: color 0.3s ease;
    }
    
    .car-item.card:hover .car-title {
        color: #007bff !important;
    }
    
    .car-features .feature-item {
        transition: all 0.3s ease;
    }
    
    .car-features .feature-item:hover {
        background: #e2e8f0 !important;
        transform: translateY(-2px);
    }
    
    .btn-primary {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, var(--secondary), #ffe641) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 0, 0.582) !important;
    }
    
    .btn-primary:hover:before {
        left: 100%;
    }
    
    .cars-list .section-title {
        color: #1a202c;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .cars-list .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 2px;
    }
    
    .cars-list .section-desc {
        color: #6b7280;
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .car-badge {
        transition: all 0.3s ease;
    }
    
    .car-count {
        transition: all 0.3s ease;
    }
    
    .car-item.card:hover .car-count {
        background: rgba(0,123,255,0.9) !important;
        transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
        .car-item.card:hover {
            transform: translateY(-4px) scale(1.01);
        }
    }

    /* Tours Section Styles */
    .tours-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
        justify-content: center;
    }

    /* Tek kart için özel stil */
    .tours-grid.single-tour {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 2rem auto 0;
    }

    /* 2 kart için özel stil */
    .tours-grid.two-tours {
        grid-template-columns: repeat(2, 1fr);
        max-width: 950px;
        margin: 2rem auto 0;
    }

    /* 3+ kart için normal grid */
    .tours-grid:not(.single-tour):not(.two-tours) {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 1400px;
        margin: 2rem auto 0;
    }

    .tour-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .tour-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .tour-image {
        position: relative;
        height: 250px;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
    }

    .tour-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .tour-card:hover .tour-image img {
        transform: scale(1.1);
    }

    .tour-overlay {
        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%);
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 1.5rem;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .tour-card:hover .tour-overlay {
        opacity: 1;
    }

    .tour-badge {
        background: linear-gradient(135deg, var(--secondary), #f5d820);
        color: #000;
        padding: 0.75rem 1.25rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: 0 5px 15px rgba(254, 238, 21, 0.4);
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .tour-card:hover .tour-badge {
        transform: translateY(0);
    }

    .tour-content {
        padding: 2rem;
    }

    .tour-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1a202c;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .tour-info {
        margin-bottom: 1.5rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #6b7280;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .info-item svg {
        color: var(--secondary);
        flex-shrink: 0;
    }

    .tour-btn {
        width: 100%;
        background: linear-gradient(135deg, #000, #333);
        color: #fff;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 15px;
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .tour-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .tour-btn:hover {
        background: linear-gradient(135deg, var(--secondary), #f5d820);
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(254, 238, 21, 0.4);
    }

    .tour-btn:hover::before {
        left: 100%;
    }

    .tour-btn svg {
        transition: transform 0.3s ease;
    }

    .tour-btn:hover svg {
        transform: translateX(3px);
    }

    @media (max-width: 768px) {
        .tours-grid {
            grid-template-columns: 1fr !important;
            gap: 1.5rem;
            max-width: 100% !important;
            margin: 2rem 0 0 !important;
        }
        
        .tour-card {
            border-radius: 15px;
        }
        
        .tour-image {
            height: 200px;
            border-radius: 15px 15px 0 0;
        }
        
        .tour-content {
            padding: 1.5rem;
        }
        
        .tour-title {
            font-size: 1.2rem;
        }
        
        .tour-card:hover {
            transform: translateY(-8px) scale(1.01);
        }
    }

    @media (max-width: 480px) {
        .tours-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .tour-overlay {
            padding: 1rem;
        }
        
        .tour-badge {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }
    }

    /* Meeting Points Section Styles */
    .meeting-hero {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 4rem 0;
        position: relative;
        overflow: hidden;
    }

    .meeting-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/view/frontend/assets/img/patterns/dots.svg') repeat;
        opacity: 0.1;
        z-index: 1;
    }

    .meeting-hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .meeting-hero-content small {
        color: var(--secondary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
    }

    .meeting-hero-content h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a202c;
        margin: 1rem 0;
        line-height: 1.2;
    }

    .meeting-hero-content p {
        color: #6b7280;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .meeting-hero-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .meeting-hero-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .meeting-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        padding: 2rem;
        color: white;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .overlay-content p {
        opacity: 0.9;
        font-size: 0.95rem;
    }

    .meeting-points-section {
        padding: 5rem 0;
        background: #fff;
    }

    .meeting-points-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: 3rem;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .meeting-point-card {
        background: #fff;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .meeting-point-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, var(--secondary), #f5d820);
    }

    .meeting-point-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .meeting-point-header {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .meeting-point-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--secondary), #f5d820);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
    }

    .meeting-point-info h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1a202c;
        margin-bottom: 0.25rem;
    }

    .airport-code {
        background: #e5e7eb;
        color: #6b7280;
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
    }

    .meeting-description {
        margin-bottom: 2rem;
    }

    .meeting-description p {
        color: #6b7280;
        line-height: 1.6;
        font-size: 1rem;
    }

    .meeting-details {
        display: grid;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .detail-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: #f9fafb;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .detail-item:hover {
        background: #f3f4f6;
        transform: translateX(5px);
    }

    .detail-item svg {
        color: var(--secondary);
        flex-shrink: 0;
    }

    .detail-item span {
        color: #374151;
        font-weight: 500;
    }

    .meeting-media {
        margin-bottom: 2.5rem;
    }

    .media-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        border-radius: 15px;
        overflow: hidden;
    }

    .media-item {
        position: relative;
        aspect-ratio: 16/9;
        overflow: hidden;
        border-radius: 10px;
        width: 100%;
    }

    .media-item img,
    .media-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .media-item:hover img,
    .media-item:hover video {
        transform: scale(1.05);
    }

    .video-item {
        position: relative;
    }

    .video-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .video-item:hover .video-overlay {
        background: rgba(0, 0, 0, 0.8);
        transform: translate(-50%, -50%) scale(1.1);
    }

    .meeting-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        text-decoration: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, #e8d90b, var(--secondary));
        color: #1f1d01;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--secondary), #feee15);
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(254, 238, 21, 0.4);
    }

    .btn-secondary {
        background: #f9fafb;
        color: #374151;
        border: 1px solid #e5e7eb;
    }

    .btn-secondary:hover {
        background: #f3f4f6;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .meeting-info-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .info-card {
        text-align: center;
        padding: 2.5rem 1.5rem;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
    }

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .info-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--secondary), #f5d820);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: #000;
    }

    .info-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1a202c;
        margin-bottom: 1rem;
    }

    .info-card p {
        color: #6b7280;
        line-height: 1.6;
    }

    @media (max-width: 1024px) {
        .meeting-hero .container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .meeting-points-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .media-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .meeting-hero {
            padding: 3rem 0;
        }
        
        .meeting-hero-content h1 {
            font-size: 2rem;
        }
        
        .meeting-point-card {
            padding: 2rem;
        }
        
        .media-grid {
            grid-template-columns: 1fr;
        }
        
        .meeting-actions {
            flex-direction: column;
        }
        
        .btn-primary,
        .btn-secondary {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .meeting-hero-content h1 {
            font-size: 1.75rem;
        }
        
        .meeting-point-card {
            padding: 1.5rem;
        }
        
        .meeting-point-header {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        
        .detail-item {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }
    }