#gallery {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background: url("images/back4.webp") center center/cover no-repeat;
  background-attachment: fixed;

  padding: 120px 8%;
  overflow: hidden;
}

/* Dark Overlay */

#gallery::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );

  z-index: 1;
}

/* ==========================
   HERO CONTENT
========================== */

.gallery-hero-content {
  position: relative;
  z-index: 2;

  max-width: 800px;
  color: #ffffff;

  animation: galleryFadeUp 1s ease;
}

/* Badge */

.gallery-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  padding: 10px 22px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 25px;

  color: #ffffff;
}

/* ==========================
   TITLE
========================== */

.gallery-title {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;

  margin-bottom: 25px;

  color: #ffffff;

  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);

  animation: galleryTitleReveal 1.2s ease;
}

/* ==========================
   PREMIUM BREADCRUMB
========================== */

.gallery-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gallery-breadcrumb a:hover {
  color: red;
}

.gallery-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.gallery-current {
  color: red;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.gallery-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: yellow;
  border-radius: 10px;
}

/* Mobile */

@media (max-width: 768px) {
  .gallery-breadcrumb {
    gap: 10px;
    padding: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-breadcrumb-home,
  .gallery-current {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gallery-breadcrumb-home,
  .gallery-current {
    font-size: 13px;
    padding: 9px 14px;
  }

  .gallery-breadcrumb-arrow {
    font-size: 12px;
  }
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes galleryFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes galleryTitleReveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   LARGE TABLET
========================== */

@media (max-width: 992px) {
  .gallery-title {
    font-size: 56px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 768px) {
  #gallery {
    justify-content: center;
    text-align: center;

    padding: 120px 6%;

    background-attachment: scroll;
  }

  .gallery-hero-content {
    margin: auto;
  }

  .gallery-title {
    font-size: 44px;
  }

  .gallery-breadcrumb {
    justify-content: center;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 480px) {
  #gallery {
    padding: 100px 20px;
  }

  .gallery-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .gallery-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .gallery-breadcrumb {
    gap: 8px;
    font-size: 14px;
    justify-content: center;
  }
}
/* =========================
GALLERY WRAPPER
========================= */
.twg-gallery-wrapper {
  padding: 40px 0 80px;
  background: #ffffff;
}

/* =========================
HEADING
========================= */
.twg-heading-wrap {
  text-align: center;
  padding: 40px 5% 60px;
}

.twg-main-heading {
  color: #111;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.twg-subtitle {
  color: #ff0000;
  display: inline;
}

.twg-heading-text {
  color: #666666;
  font-size: 17px;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
FILTER BUTTONS
========================= */
.twg-filter-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.twg-filter-btn {
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #333333;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
}

.twg-filter-btn:hover {
  border-color: #ff4d00;
  color: #ff4d00;
  background: #fff5f2;
}

.twg-active-filter {
  background: #ff4d00;
  color: #ffffff;
  border-color: #ff4d00;
}

.twg-active-filter:hover {
  background: #cc3300;
  border-color: #cc3300;
  color: #ffffff;
}

/* =========================
GRID CONTAINER
========================= */
.twg-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
GRID ITEMS
========================= */
.twg-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: twgFadeIn 0.5s ease;
}

.twg-grid-item.twg-hide {
  display: none;
  animation: twgFadeOut 0.3s ease;
}

.twg-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3/4;
}

.twg-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.twg-grid-item:hover .twg-img-box img {
  transform: scale(1.1);
}

/* Overlay */
.twg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.twg-grid-item:hover .twg-img-overlay {
  opacity: 1;
}

/* Zoom Button */
.twg-zoom-btn {
  width: 60px;
  height: 60px;
  background: #ff4d00;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  transform: scale(0.7);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.4);
}

.twg-grid-item:hover .twg-zoom-btn {
  transform: scale(1);
}

.twg-zoom-btn:hover {
  background: #ffffff;
  color: #ff4d00;
  transform: scale(1.1) !important;
}

/* =========================
ANIMATIONS
========================= */
@keyframes twgFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes twgFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

/* =========================
LIGHTBOX
========================= */
.twg-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  animation: twgLightboxIn 0.3s ease;
}

.twg-lightbox.twg-lightbox-open {
  display: flex;
}

@keyframes twgLightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.twg-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.twg-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: twgZoomIn 0.4s ease;
}

@keyframes twgZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.twg-lightbox-counter {
  color: #ffffff;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}

.twg-lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.twg-lightbox-close:hover {
  color: #ff4d00;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.twg-lightbox-prev,
.twg-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.twg-lightbox-prev {
  left: 30px;
}

.twg-lightbox-next {
  right: 30px;
}

.twg-lightbox-prev:hover,
.twg-lightbox-next:hover {
  background: #ff4d00;
  transform: translateY(-50%) scale(1.1);
}

/* =========================
TABLET RESPONSIVE
========================= */
@media (max-width: 991px) {
  .twg-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .twg-lightbox-prev {
    left: 15px;
    padding: 12px 16px;
    font-size: 24px;
  }

  .twg-lightbox-next {
    right: 15px;
    padding: 12px 16px;
    font-size: 24px;
  }

  .twg-lightbox-close {
    top: 20px;
    right: 25px;
    font-size: 35px;
  }
}

/* =========================
MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .twg-heading-wrap {
    padding: 20px 5% 40px;
  }

  .twg-main-heading {
    font-size: 34px;
  }

  .twg-heading-text {
    font-size: 15px;
  }

  .twg-filter-wrap {
    gap: 10px;
    margin-bottom: 35px;
  }

  .twg-filter-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .twg-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    padding: 0 15px;
  }

  .twg-zoom-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .twg-lightbox-content {
    max-width: 95%;
  }

  .twg-lightbox-prev,
  .twg-lightbox-next {
    padding: 10px 14px;
    font-size: 20px;
  }
}

/* =========================
SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .twg-main-heading {
    font-size: 28px;
  }

  .twg-heading-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .twg-filter-wrap {
    gap: 8px;
  }

  .twg-filter-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .twg-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .twg-img-box {
    aspect-ratio: 3/4;
  }

  .twg-zoom-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .twg-lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .twg-lightbox-prev {
    left: 10px;
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 6px;
  }

  .twg-lightbox-next {
    right: 10px;
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 6px;
  }
}

/* =========================
CCTA - CTA SECTION (INCREASED SIZE)
========================= */
.gcta-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.gcta-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.gcta-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.gcta-container {
  max-width: 1100px; /* Increased from 900px */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gcta-box {
  background: linear-gradient(135deg, #ff4d00 0%, #e64400 50%, #cc3300 100%);
  border-radius: 30px; /* Increased from 24px */
  padding: 80px 70px; /* Increased from 60px 50px */
  box-shadow: 0 25px 80px rgba(255, 77, 0, 0.35); /* Enhanced shadow */
  position: relative;
  overflow: hidden;
}

.gcta-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.gcta-box::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 30%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.gcta-content {
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.gcta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 30px; /* Increased */
  border-radius: 50px;
  font-size: 14px; /* Increased */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px; /* Increased */
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gcta-title {
  font-size: clamp(2rem, 5vw, 3rem); /* Increased from 1.8rem-2.5rem */
  font-weight: 700;
  margin-bottom: 25px; /* Increased */
  line-height: 1.3;
}

.gcta-text {
  font-size: 18px; /* Increased from 17px */
  opacity: 0.9;
  margin-bottom: 50px; /* Increased from 40px */
  line-height: 1.8;
  max-width: 750px; /* Increased from 650px */
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.gcta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* Increased from 15px */
}

.gcta-btn {
  display: flex;
  align-items: center;
  gap: 12px; /* Increased */
  padding: 18px 35px; /* Increased from 16px 30px */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px; /* Increased from 15px */
  transition: all 0.3s ease;
  white-space: nowrap;
}

.gcta-btn i {
  font-size: 20px; /* Increased from 18px */
}

.gcta-btn-call {
  background: #ffffff;
  color: #ff4d00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gcta-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #000000;
  color: #ffffff;
}

.gcta-btn-location {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.gcta-btn-location:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  border-color: #ffffff;
}

.gcta-btn-appointment {
  background: yellow;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gcta-btn-appointment:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
  background: yellow;
}

/* =========================
RESPONSIVE - TABLET
========================= */
@media (max-width: 991px) {
  .gcta-container {
    max-width: 95%;
  }

  .gcta-box {
    padding: 60px 40px;
    border-radius: 24px;
  }

  .gcta-title {
    font-size: 2rem;
  }

  .gcta-text {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .gcta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .gcta-btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    padding: 16px 30px;
  }
}

/* =========================
RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
  .gcta-section {
    padding: 70px 15px;
  }

  .gcta-box {
    padding: 50px 30px;
    border-radius: 20px;
  }

  .gcta-badge {
    padding: 8px 24px;
    font-size: 13px;
  }

  .gcta-title {
    font-size: 1.8rem;
  }

  .gcta-text {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .gcta-btn {
    padding: 15px 28px;
    font-size: 15px;
  }
}

/* =========================
RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .gcta-section {
    padding: 50px 10px;
  }

  .gcta-box {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .gcta-badge {
    font-size: 11px;
    padding: 6px 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .gcta-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .gcta-text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .gcta-buttons {
    gap: 12px;
  }

  .gcta-btn {
    padding: 14px 25px;
    font-size: 14px;
    gap: 8px;
    max-width: 100%;
  }

  .gcta-btn i {
    font-size: 16px;
  }
}

/* =========================
GFAQ - FAQ SECTION
========================= */
.gfaq-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.gfaq-container {
  max-width: 850px;
  margin: 0 auto;
}

.gfaq-header {
  text-align: center;
  margin-bottom: 55px;
}

.gfaq-tag {
  display: inline-block;
  color: #ff4d00;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: rgba(255, 77, 0, 0.08);
  padding: 6px 20px;
  border-radius: 50px;
}

.gfaq-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111111;
  margin-bottom: 15px;
}

.gfaq-desc {
  font-size: 16px;
  color: #666666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ List */
.gfaq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gfaq-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gfaq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.gfaq-item.gfaq-active {
  border-color: #ff4d00;
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.1);
}

/* FAQ Question Button */
.gfaq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}

.gfaq-question:hover {
  color: #ff4d00;
}

.gfaq-item.gfaq-active .gfaq-question {
  color: #ff4d00;
}

.gfaq-question-text {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  flex: 1;
  padding-right: 20px;
}

.gfaq-item.gfaq-active .gfaq-question-text {
  color: #ff4d00;
}

/* FAQ Icon */
.gfaq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d00;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gfaq-item.gfaq-active .gfaq-icon {
  background: #ff4d00;
  color: #ffffff;
  transform: rotate(45deg);
}

.gfaq-icon svg {
  transition: all 0.4s ease;
}

/* FAQ Answer */
.gfaq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gfaq-answer-inner {
  padding: 0 28px 24px;
}

.gfaq-answer-inner p {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease 0.05s;
}

.gfaq-item.gfaq-active .gfaq-answer-inner p {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
RESPONSIVE - TABLET
========================= */
@media (max-width: 991px) {
  .gcta-box {
    padding: 50px 35px;
  }

  .gcta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gcta-btn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
}

/* =========================
RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
  .gcta-section {
    padding: 60px 15px;
  }

  .gcta-box {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .gcta-title {
    font-size: 1.6rem;
  }

  .gcta-text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .gcta-btn {
    padding: 14px 25px;
    font-size: 14px;
  }

  .gfaq-section {
    padding: 60px 15px;
  }

  .gfaq-header {
    margin-bottom: 40px;
  }

  .gfaq-question {
    padding: 18px 22px;
  }

  .gfaq-question-text {
    font-size: 15px;
  }

  .gfaq-answer-inner {
    padding: 0 22px 20px;
  }

  .gfaq-answer-inner p {
    font-size: 14px;
  }
}

/* =========================
RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .gcta-section {
    padding: 50px 10px;
  }

  .gcta-box {
    padding: 35px 20px;
    border-radius: 16px;
  }

  .gcta-badge {
    font-size: 11px;
    padding: 6px 18px;
    letter-spacing: 1px;
  }

  .gcta-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .gcta-text {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .gcta-btn {
    padding: 12px 22px;
    font-size: 13px;
    gap: 8px;
  }

  .gcta-btn i {
    font-size: 16px;
  }

  .gfaq-section {
    padding: 50px 10px;
  }

  .gfaq-title {
    font-size: 1.5rem;
  }

  .gfaq-tag {
    font-size: 12px;
    padding: 5px 16px;
  }

  .gfaq-question {
    padding: 16px 18px;
  }

  .gfaq-question-text {
    font-size: 14px;
  }

  .gfaq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .gfaq-answer-inner {
    padding: 0 18px 18px;
  }

  .gfaq-answer-inner p {
    font-size: 13px;
    line-height: 1.7;
  }
}
