/* About us start */
.gk-about-section {
  width: 100%;
  padding: 95px 20px;
  background: #fff;
}
.gk-about-container {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}
/* =========================================================
   IMAGE AREA
========================================================= */
.gk-about-image {
  position: relative;
  padding: 0 0 18px 18px;
}
.gk-about-image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88%;
  height: 88%;
  border-radius: 24px;
  background:
    linear-gradient(135deg,
      #f8e1e5,
      #fdf5f6);
  z-index: 0;
}
.gk-about-image-frame {
  position: relative;
  z-index: 1;
  height: 445px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow:
    0 22px 55px rgba(70, 12, 22, .14);
}
.gk-about-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .65s ease;
}
.gk-about-image-frame:hover img {
  transform: scale(1.045);
}
/* =========================================================
   BADGE
========================================================= */
.gk-about-badge {
  position: absolute;
  right: -12px;
  bottom: 34px;
  z-index: 2;
  min-width: 155px;
  padding: 16px 19px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: #fff;
  box-shadow:
    0 15px 35px rgba(60, 10, 20, .14);
  border: 1px solid rgba(100, 16, 29, .08);
}
.gk-about-badge strong {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color: #64101d;
}
.gk-about-badge span {
  margin-top: 3px;
  font-size: 11px;
  color: #8b767a;
  letter-spacing: .4px;
}
/* =========================================================
   CONTENT
========================================================= */
.gk-about-content {
  max-width: 520px;
}
.gk-about-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c91f35;
}
.gk-about-label::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 50px;
  background: #c91f35;
}
/* =========================================================
   TITLE
========================================================= */
.gk-about-content h2 {
  margin-top: 13px;
  margin-bottom: 17px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: #321017;
}
.gk-about-content h2 span {
  display: block;
  color: #c91f35;
}
/* =========================================================
   TEXT
========================================================= */
.gk-about-content p {
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #6f6769;
}
/* =========================================================
   BUTTON
========================================================= */
.gk-about-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg,
      #d52a42,
      #8f172b);
  font-size: 12px;
  font-weight: 700;
  box-shadow:
    0 9px 24px rgba(125, 15, 32, .19);
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}
.gk-about-btn i {
  font-size: 11px;
  transition:
    transform .3s ease;
}
.gk-about-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 13px 28px rgba(125, 15, 32, .25);
}
.gk-about-btn:hover i {
  transform: translateX(4px);
}
/* =========================================================
   TABLET
========================================================= */
@media(max-width:900px) {
  .gk-about-section {
    padding: 75px 20px;
  }
  .gk-about-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .gk-about-content {
    max-width: 700px;
  }
  .gk-about-image {
    width: min(650px, 100%);
    margin: auto;
  }
}
/* =========================================================
   MOBILE
========================================================= */
@media(max-width:600px) {
  .gk-about-section {
    padding: 60px 16px;
  }
  .gk-about-container {
    gap: 38px;
  }
  .gk-about-image {
    padding: 0 0 13px 13px;
  }
  .gk-about-image-frame {
    height: 330px;
    border-radius: 20px;
  }
  .gk-about-image::before {
    border-radius: 20px;
  }
  .gk-about-badge {
    right: -4px;
    bottom: 22px;
    min-width: 135px;
    padding: 13px 15px;
    border-radius: 12px;
  }
  .gk-about-badge strong {
    font-size: 15px;
  }
  .gk-about-badge span {
    font-size: 9px;
  }
  .gk-about-label {
    font-size: 9px;
    letter-spacing: 1.7px;
  }
  .gk-about-content h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .gk-about-content p {
    font-size: 13px;
    line-height: 1.7;
  }
}
/* =========================================================
   SMALL MOBILE
========================================================= */
@media(max-width:390px) {
  .gk-about-image-frame {
    height: 295px;
  }
  .gk-about-content h2 {
    font-size: 29px;
  }
}
/* About us Completed */
/* Our Service Start */
.gk-services {
  width: 100%;
  background: #fff;
  /* Compact vertical space */
  padding: 55px 0;
}
/* =========================================================
   95% WIDTH WRAPPER
========================================================= */
.gk-services-wrap {
  width: 95%;
  max-width: 1450px;
  margin: 0 auto;
}
/* =========================================================
   HEADING
========================================================= */
.gk-services-head {
  text-align: center;
  margin-bottom: 28px;
}
.gk-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c91f35;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gk-services-eyebrow::before,
.gk-services-eyebrow::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 50px;
  background: #c91f35;
}
.gk-services-head h2 {
  margin: 9px 0 8px;
  color: #321017;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.4px;
}
.gk-services-head h2 span {
  color: #c91f35;
}
.gk-services-head p {
  max-width: 580px;
  margin: 0 auto;
  color: #766b6d;
  font-size: 13px;
  line-height: 1.6;
}
/* =========================================================
   GRID
========================================================= */
.gk-services-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 16px;
}
/* =========================================================
   SERVICE BOX
========================================================= */
.gk-service-box {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: block;
  border-radius: 16px;
  background: #321017;
  isolation: isolate;
  box-shadow:
    0 9px 28px rgba(65, 9, 20, .09);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}
.gk-service-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 35px rgba(65, 9, 20, .16);
}
/* =========================================================
   IMAGE
========================================================= */
.gk-service-box>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .6s cubic-bezier(.2, .7, .2, 1);
}
.gk-service-box:hover>img {
  transform: scale(1.055);
}
/* =========================================================
   DARK SHADE
========================================================= */
.gk-service-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(20, 4, 9, .04) 0%,
      rgba(26, 4, 10, .20) 40%,
      rgba(30, 5, 12, .84) 100%);
}
/* =========================================================
   CONTENT
========================================================= */
.gk-service-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
/* =========================================================
   NUMBER
========================================================= */
.gk-service-no {
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(255, 255, 255, .70);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
/* =========================================================
   TITLE
========================================================= */
.gk-service-info h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.3px;
}
/* =========================================================
   DESCRIPTION
========================================================= */
.gk-service-info p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.5;
}
/* =========================================================
   ARROW
========================================================= */
.gk-service-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(7px);
  transition:
    background .3s ease,
    transform .3s ease;
}
.gk-service-link i {
  font-size: 10px;
}
.gk-service-box:hover .gk-service-link {
  background: #c91f35;
  transform: translateX(3px);
}
/* =========================================================
   TABLET
   Same 3 × 2 structure
========================================================= */
@media(max-width:850px) {
  .gk-services-grid {
    gap: 12px;
  }
  .gk-service-box {
    height: 275px;
  }
  .gk-service-info {
    padding: 17px;
  }
  .gk-service-info h3 {
    font-size: 17px;
  }
  .gk-service-info p {
    font-size: 9px;
  }
  .gk-service-link {
    right: 14px;
    bottom: 14px;
    width: 32px;
    height: 32px;
  }
}
/* =========================================================
   MOBILE
   One-by-one cards
========================================================= */
@media(max-width:600px) {
  .gk-services {
    padding: 45px 0;
  }
  .gk-services-wrap {
    width: 95%;
  }
  .gk-services-head {
    margin-bottom: 22px;
  }
  .gk-services-eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .gk-services-eyebrow::before,
  .gk-services-eyebrow::after {
    width: 15px;
  }
  .gk-services-head h2 {
    font-size: 29px;
    letter-spacing: -.8px;
  }
  .gk-services-head p {
    font-size: 11px;
  }
  /*
       Mobile = one card per row.
    */
  .gk-services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gk-service-box {
    height: 240px;
    border-radius: 14px;
  }
  .gk-service-info {
    padding: 17px;
  }
  .gk-service-no {
    top: 14px;
    left: 16px;
  }
  .gk-service-info h3 {
    font-size: 19px;
  }
  .gk-service-info p {
    max-width: 280px;
    font-size: 10px;
  }
  .gk-service-link {
    right: 14px;
    bottom: 14px;
    width: 33px;
    height: 33px;
  }
}
/* =========================================================
   SMALL PHONES
========================================================= */
@media(max-width:390px) {
  .gk-services-head h2 {
    font-size: 27px;
  }
  .gk-service-box {
    height: 225px;
  }
}
/* Our Service Completed */
/* Why Choose Us Start */
.gk-why-section {
  width: 100%;
  background: #fff;
  padding: 70px 20px;
}
.gk-why-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 65px;
}
/* =========================================================
   LEFT CONTENT
========================================================= */
.gk-why-content {
  max-width: 570px;
}
.gk-why-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c91f35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gk-why-label::before {
  content: "";
  width: 23px;
  height: 2px;
  border-radius: 50px;
  background: #c91f35;
}
.gk-why-content h2 {
  margin-top: 11px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: #321017;
}
.gk-why-content h2 span {
  display: block;
  color: #c91f35;
}
.gk-why-intro {
  max-width: 530px;
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.7;
  color: #766b6d;
}
/* =========================================================
   BENEFIT POINTS
========================================================= */
.gk-why-points {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.gk-why-point {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(100, 16, 29, 0.08);
  border-radius: 13px;
  background: #fffafa;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.gk-why-point:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 31, 53, 0.17);
  box-shadow: 0 10px 25px rgba(86, 14, 27, 0.08);
}
/* =========================================================
   ICON
========================================================= */
.gk-why-icon {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #c91f35;
  background: #f9e8eb;
}
.gk-why-icon i {
  font-size: 14px;
}
.gk-why-point h3 {
  margin: 1px 0 3px;
  font-size: 12px;
  font-weight: 700;
  color: #43111b;
}
.gk-why-point p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  color: #7b7072;
}
/* =========================================================
   DROPDOWN
========================================================= */
.gk-why-dropdown {
  margin-top: 16px;
  border: 1px solid rgba(100, 16, 29, 0.09);
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
}
.gk-why-dropdown-btn {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  border: 0;
  outline: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #49131d;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}
.gk-why-dropdown-btn i {
  font-size: 10px;
  color: #c91f35;
  transition: transform 0.35s ease;
}
.gk-why-dropdown-btn.active i {
  transform: rotate(180deg);
}
.gk-why-dropdown-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease,
    opacity 0.3s ease;
}
.gk-why-dropdown-content.active {
  max-height: 220px;
  padding: 0 15px 14px;
  opacity: 1;
}
.gk-why-dropdown-content p {
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.6;
  color: #766b6d;
}
/* =========================================================
   RIGHT VISUAL
========================================================= */
.gk-why-visual {
  position: relative;
  width: 100%;
}
.gk-why-image {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 23px;
  box-shadow: 0 18px 45px rgba(64, 10, 21, 0.14);
}
.gk-why-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.gk-why-visual:hover .gk-why-image img {
  transform: scale(1.045);
}
/* Very subtle image overlay */
.gk-why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(40, 6, 14, 0.02),
      rgba(40, 6, 14, 0.12));
}
/* =========================================================
   TRUST CARD
========================================================= */
.gk-why-trust-card {
  position: absolute;
  left: -25px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 13px 15px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(61, 9, 21, 0.15);
  border: 1px solid rgba(100, 16, 29, 0.07);
}
.gk-trust-icon {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #d12a42, #881528);
}
.gk-trust-icon i {
  font-size: 13px;
}
.gk-why-trust-card strong {
  display: block;
  font-size: 12px;
  color: #43111b;
}
.gk-why-trust-card span {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  color: #867678;
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 900px) {
  .gk-why-section {
    padding: 60px 20px;
  }
  .gk-why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gk-why-content {
    max-width: 750px;
  }
  .gk-why-visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }
  .gk-why-image {
    height: 390px;
  }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 600px) {
  .gk-why-section {
    padding: 50px 15px;
  }
  .gk-why-container {
    gap: 32px;
  }
  .gk-why-label {
    font-size: 8px;
    letter-spacing: 1.6px;
  }
  .gk-why-content h2 {
    font-size: 30px;
    letter-spacing: -0.8px;
  }
  .gk-why-intro {
    font-size: 12px;
    line-height: 1.65;
  }
  .gk-why-points {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }
  .gk-why-point {
    padding: 11px;
  }
  .gk-why-point h3 {
    font-size: 11px;
  }
  .gk-why-point p {
    font-size: 9px;
  }
  .gk-why-image {
    height: 310px;
    border-radius: 18px;
  }
  .gk-why-trust-card {
    left: 12px;
    bottom: 16px;
    min-width: 190px;
    padding: 11px 13px;
  }
}
/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 390px) {
  .gk-why-content h2 {
    font-size: 27px;
  }
  .gk-why-image {
    height: 280px;
  }
  .gk-why-trust-card {
    min-width: 175px;
  }
}
/* Why Choose Us Completed */
/* Gallery Start */
.gk-gallery-section {
  width: 100%;
  padding: 60px 0 65px;
  background: #fffafa;
  overflow: hidden;
}
/* =========================================================
   HEADING
========================================================= */
.gk-gallery-heading {
  width: min(700px, 92%);
  margin: 0 auto 30px;
  text-align: center;
}
.gk-gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c91f35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gk-gallery-label::before,
.gk-gallery-label::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #c91f35;
  border-radius: 50px;
}
.gk-gallery-heading h2 {
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #321017;
}
.gk-gallery-heading h2 span {
  color: #c91f35;
}
.gk-gallery-heading p {
  margin: 10px auto 0;
  max-width: 560px;
  color: #766b6d;
  font-size: 13px;
  line-height: 1.65;
}
/* =========================================================
   MARQUEE
========================================================= */
.gk-gallery-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /*
       Fading edges make the continuous gallery
       look cleaner.
    */
  mask-image: linear-gradient(90deg,
      transparent,
      #000 5%,
      #000 95%,
      transparent);
  -webkit-mask-image: linear-gradient(90deg,
      transparent,
      #000 5%,
      #000 95%,
      transparent);
}
/* =========================================================
   TRACK
========================================================= */
.gk-gallery-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 16px;
  animation: gkGalleryMove 42s linear infinite;
  will-change: transform;
}
/*
   Moving exactly 50% works because
   the second half is a duplicate.
*/
@keyframes gkGalleryMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Pause */
.gk-gallery-marquee:hover .gk-gallery-track {
  animation-play-state: paused;
}
/* =========================================================
   IMAGE CARD
========================================================= */
.gk-gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  height: 195px;
  padding: 0;
  border: 0;
  outline: 0;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #eee;
  box-shadow: 0 10px 28px rgba(71, 9, 20, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.gk-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(71, 9, 20, 0.17);
}
/* =========================================================
   IMAGE
========================================================= */
.gk-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}
.gk-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.88);
}
/* =========================================================
   HOVER ICON
========================================================= */
.gk-gallery-item::after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(107, 15, 29, 0.82);
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.gk-gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* =========================================================
   LIGHTBOX
========================================================= */
.gk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.gk-lightbox.active {
  opacity: 1;
  visibility: visible;
}
/* =========================================================
   BACKDROP
========================================================= */
.gk-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 4, 9, 0.9);
  backdrop-filter: blur(8px);
}
/* =========================================================
   LIGHTBOX BOX
========================================================= */
.gk-lightbox-box {
  position: relative;
  z-index: 2;
  width: min(1050px, 92vw);
  height: min(700px, 86vh);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =========================================================
   POPUP IMAGE
========================================================= */
.gk-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  user-select: none;
}
/* =========================================================
   CLOSE
========================================================= */
.gk-lightbox-close {
  position: absolute;
  z-index: 5;
  top: -15px;
  right: -15px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(112, 17, 34, 0.92);
  backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.gk-lightbox-close:hover {
  background: #c91f35;
  transform: rotate(90deg);
}
/* =========================================================
   ARROWS
========================================================= */
.gk-lightbox-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(80, 10, 24, 0.75);
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.gk-lightbox-arrow:hover {
  background: #c91f35;
}
.gk-lightbox-prev {
  left: -22px;
}
.gk-lightbox-next {
  right: -22px;
}
/* =========================================================
   COUNTER
========================================================= */
.gk-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}
#gkLightboxCurrent {
  color: #fff;
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 900px) {
  .gk-gallery-section {
    padding: 55px 0 60px;
  }
  .gk-gallery-track {
    gap: 13px;
    animation-duration: 36s;
  }
  .gk-gallery-item {
    width: 220px;
    height: 165px;
    border-radius: 14px;
  }
  .gk-lightbox-box {
    width: 90vw;
    height: 80vh;
  }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 600px) {
  .gk-gallery-section {
    padding: 45px 0 50px;
  }
  .gk-gallery-heading {
    width: 92%;
    margin-bottom: 22px;
  }
  .gk-gallery-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .gk-gallery-label::before,
  .gk-gallery-label::after {
    width: 15px;
  }
  .gk-gallery-heading h2 {
    font-size: 29px;
    letter-spacing: -0.8px;
  }
  .gk-gallery-heading p {
    font-size: 11px;
  }
  .gk-gallery-track {
    gap: 10px;
    animation-duration: 30s;
  }
  .gk-gallery-item {
    width: 185px;
    height: 140px;
    border-radius: 12px;
  }
  /* Mobile popup */
  .gk-lightbox {
    padding: 15px;
  }
  .gk-lightbox-box {
    width: 94vw;
    height: 70vh;
  }
  .gk-lightbox-image {
    max-width: 94vw;
    max-height: 68vh;
    border-radius: 7px;
  }
  .gk-lightbox-close {
    top: -10px;
    right: -6px;
    width: 38px;
    height: 38px;
  }
  .gk-lightbox-arrow {
    width: 39px;
    height: 39px;
  }
  .gk-lightbox-prev {
    left: -5px;
  }
  .gk-lightbox-next {
    right: -5px;
  }
  .gk-lightbox-counter {
    bottom: -27px;
  }
}
/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .gk-gallery-track {
    animation: none;
  }
  .gk-gallery-item,
  .gk-gallery-item img,
  .gk-gallery-item::after {
    transition: none;
  }
}
/* Gallery Completed */
/* Review Start */
.gk-testimonials{
    width:100%;
    padding:70px 20px;
    background:#fafafa;
}
.gk-review-wrap{
    width:min(1180px,100%);
    margin:0 auto;
}
/* =========================================================
   HEADING
========================================================= */
.gk-review-heading{
    text-align:center;
    margin-bottom:32px;
}
.gk-google-mini{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#5f6368;
}
.gk-google-g{
    font-family:Arial,sans-serif;
    font-size:20px;
    font-weight:700;
    background:
        linear-gradient(
            90deg,
            #4285f4 0%,
            #34a853 36%,
            #fbbc05 67%,
            #ea4335 100%
        );
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}
.gk-review-heading h2{
    margin-top:10px;
    font-family:"Montserrat",sans-serif;
    font-size:clamp(32px,4vw,48px);
    line-height:1.1;
    letter-spacing:-1.5px;
    color:#321017;
}
.gk-review-heading h2 span{
    display:block;
    color:#c91f35;
}
.gk-review-heading p{
    max-width:560px;
    margin:10px auto 0;
    font-size:13px;
    line-height:1.6;
    color:#766b6d;
}
/* =========================================================
   SUMMARY
========================================================= */
.gk-review-summary{
    display:grid;
    grid-template-columns:
        190px
        1fr
        auto;
    align-items:center;
    gap:35px;
    padding:22px 25px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:14px;
    box-shadow:
        0 7px 24px rgba(30,30,30,.05);
    margin-bottom:20px;
}
/* Rating */
.gk-summary-rating{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
.gk-summary-rating strong{
    font-family:"Montserrat",sans-serif;
    font-size:38px;
    line-height:1;
    color:#202124;
}
.gk-summary-stars{
    margin-top:7px;
    color:#fbbc04;
    font-size:17px;
    letter-spacing:1px;
}
.gk-summary-rating span{
    margin-top:4px;
    font-size:9px;
    color:#70757a;
}
/* =========================================================
   RATING BARS
========================================================= */
.gk-summary-bars{
    width:min(420px,100%);
}
.gk-rating-row{
    display:flex;
    align-items:center;
    gap:8px;
    height:13px;
    font-size:9px;
    color:#70757a;
}
.gk-rating-track{
    flex:1;
    height:6px;
    overflow:hidden;
    border-radius:50px;
    background:#e8eaed;
}
.gk-rating-track span{
    display:block;
    height:100%;
    border-radius:50px;
    background:#fbbc04;
}
/* =========================================================
   VIEW ALL BUTTON
========================================================= */
.gk-review-button{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:0 17px;
    border:1px solid #dadce0;
    border-radius:8px;
    background:#fff;
    color:#3c4043;
    font-size:11px;
    font-weight:600;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}
.gk-review-button:hover{
    background:#f8f9fa;
    border-color:#bdc1c6;
    color:#202124;
    transform:translateY(-2px);
}
.gk-review-button i{
    font-size:10px;
}
/* =========================================================
   REVIEW GRID
========================================================= */
.gk-review-grid{
    display:grid;
    grid-template-columns:
        repeat(4,minmax(0,1fr));
    gap:14px;
}
/* =========================================================
   REVIEW CARD
========================================================= */
.gk-review-card{
    position:relative;
    min-height:250px;
    display:flex;
    flex-direction:column;
    padding:20px;
    background:#fff;
    border:1px solid #e1e3e6;
    border-radius:13px;
    box-shadow:
        0 5px 18px rgba(30,30,30,.045);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}
.gk-review-card:hover{
    transform:translateY(-4px);
    border-color:#d6d8dc;
    box-shadow:
        0 12px 28px rgba(30,30,30,.09);
}
/* =========================================================
   REVIEW USER
========================================================= */
.gk-review-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
.gk-review-user{
    display:flex;
    align-items:center;
    gap:10px;
}
.gk-review-avatar{
    width:38px;
    height:38px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#e8eefc;
    color:#3367d6;
    font-size:13px;
    font-weight:700;
}
.gk-avatar-2{
    background:#fce8e6;
    color:#d93025;
}
.gk-avatar-3{
    background:#e6f4ea;
    color:#188038;
}
.gk-avatar-4{
    background:#fef7e0;
    color:#b06000;
}
.gk-review-user-info h3{
    margin:0;
    font-family:"DM Sans",sans-serif;
    font-size:12px;
    font-weight:700;
    color:#202124;
}
.gk-review-user-info span{
    display:block;
    margin-top:2px;
    font-size:9px;
    color:#70757a;
}
/* =========================================================
   GOOGLE MARK
========================================================= */
.gk-review-google{
    font-family:Arial,sans-serif;
    font-size:19px;
    font-weight:700;
    background:
        linear-gradient(
            90deg,
            #4285f4 0%,
            #34a853 36%,
            #fbbc05 67%,
            #ea4335 100%
        );
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}
/* =========================================================
   STARS
========================================================= */
.gk-review-stars{
    margin-top:15px;
    color:#fbbc04;
    font-size:15px;
    letter-spacing:1px;
}
/* =========================================================
   REVIEW TEXT
========================================================= */
.gk-review-text{
    margin:12px 0 0;
    color:#3c4043;
    font-size:11.5px;
    line-height:1.7;
}
/* =========================================================
   READ MORE
========================================================= */
.gk-review-more{
    margin-top:auto;
    padding:10px 0 0;
    width:max-content;
    border:0;
    background:none;
    cursor:pointer;
    color:#1a73e8;
    font-size:10px;
    font-weight:600;
}
/* =========================================================
   BOTTOM CTA
========================================================= */
.gk-review-cta{
    margin-top:18px;
    padding:17px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-radius:13px;
    background:
        linear-gradient(
            135deg,
            #64101d,
            #8d172b
        );
    color:#fff;
}
.gk-review-cta strong{
    display:block;
    font-size:13px;
}
.gk-review-cta span{
    display:block;
    margin-top:3px;
    font-size:9px;
    color:rgba(255,255,255,.72);
}
.gk-review-cta a{
    min-height:40px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 16px;
    border-radius:7px;
    background:#fff;
    color:#64101d;
    font-size:10px;
    font-weight:700;
    transition:
        transform .25s ease;
}
.gk-review-cta a:hover{
    color:#64101d;
    transform:translateY(-2px);
}
.gk-review-cta i{
    font-size:10px;
}
/* =========================================================
   TABLET
========================================================= */
@media(max-width:950px){
    .gk-review-grid{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
    .gk-review-summary{
        grid-template-columns:
            170px
            1fr;
        gap:24px;
    }
    .gk-review-button{
        grid-column:1 / -1;
        width:max-content;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media(max-width:600px){
    .gk-testimonials{
        padding:50px 14px;
    }
    .gk-review-heading{
        margin-bottom:22px;
    }
    .gk-google-mini{
        font-size:8px;
    }
    .gk-google-g{
        font-size:17px;
    }
    .gk-review-heading h2{
        font-size:29px;
        letter-spacing:-.8px;
    }
    .gk-review-heading p{
        font-size:11px;
    }
    /* Summary becomes compact */
    .gk-review-summary{
        grid-template-columns:1fr;
        gap:18px;
        padding:18px;
    }
    .gk-summary-rating{
        align-items:center;
    }
    .gk-summary-bars{
        width:100%;
    }
    .gk-review-button{
        width:100%;
    }
    /* Review cards */
    .gk-review-grid{
        grid-template-columns:1fr;
        gap:10px;
    }
    .gk-review-card{
        min-height:215px;
        padding:17px;
    }
    /* Bottom CTA */
    .gk-review-cta{
        flex-direction:column;
        align-items:flex-start;
        gap:13px;
    }
    .gk-review-cta a{
        width:100%;
        justify-content:center;
    }
}
/* Review Completed */