.elementor-191 .elementor-element.elementor-element-4750f04{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-17px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-b5a46bb *//* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary: #0b3d2e;
  --secondary: #075c43;
  --accent: #00c853;
  --blue: #0288d1;
  --white: #ffffff;
}

/* =========================
   BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #f4f7f6;
  color: #222;
}

/* =========================
   HERO (MOBILE FIRST)
========================= */
.goa-hero {
  position: relative;
  min-height: 85vh;
  padding: 50px 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* VIDEO */
.goa-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY (IMPORTANT) */
.goa-hero::after {
    content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.3)
  );
  z-index: 1;

}

/* CONTENT */
.goa-hero__content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  color: var(--white);
}

/* TITLE */
.goa-hero__title {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

/* SUBTITLE */
.goa-hero__subtitle {
  font-size: 14px;
  margin-bottom: 18px;
}

/* BUTTON */
.goa-btn-primary {
  display: inline-block;
  width: 100%;
  max-width: 240px;

  padding: 14px;
  font-size: 14px;

  border: none;
  border-radius: 50px;
  cursor: pointer;

  background: linear-gradient(135deg, #00c853, #00bcd4);
  color: var(--white);
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) {

  .goa-hero {
    padding: 80px 20px;
    min-height: 90vh;
  }

  .goa-hero__title {
    font-size: 38px;
  }

  .goa-hero__subtitle {
    font-size: 16px;
  }

  .goa-btn-primary {
    width: auto;
    padding: 14px 30px;
  }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 1024px) {

  .goa-hero {
    min-height: 100vh;
  }

  .goa-hero__title {
    font-size: 52px;
  }

  .goa-hero__content {
    max-width: 800px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-90b3700 *//* VARIABLES (IMPORTANT FIX) */
:root {
  --primary: #0b3d2e;
  --secondary: #00c853;
}

/* SECTION */
.about-premium {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;

  background:
    linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1920');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* FIXED BUG HERE */
.about-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* CONTAINER */
.about-premium__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.about-premium__visual {
  width: 50%;
  position: relative;
  transform: translateX(-60px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22,1,0.36,1);
}

.about-premium__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

/* IMAGE ANIMATION */
.about-premium.active .about-premium__image {
  animation: drift 18s ease-in-out infinite;
}

@keyframes drift {
  0% { transform: scale(1.05) translateY(0); }
  50% { transform: scale(1.1) translateY(-12px); }
  100% { transform: scale(1.05) translateY(0); }
}

/* BADGE */
.about-premium__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* RIGHT CONTENT */
.about-premium__content {
  width: 50%;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateX(60px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22,1,0.36,1);
}

/* TITLE */
.about-premium__title {
  font-size: 42px;
  font-family: serif;
  margin-bottom: 20px;
}

.about-premium__title span {
  background: linear-gradient(90deg, #0b3d2e, #00c853);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.about-premium__text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
}

/* FEATURES */
.about-premium__features {
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
}

.about-premium__features div {
  background: rgba(11,61,46,0.08);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
}

/* HIGHLIGHT TEXT */
.about-premium__highlight {
  font-weight: 600;
  color: #0b3d2e;
}

/* CTA */
.about-premium__cta {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.about-premium__cta:hover {
  transform: translateY(-2px);
}

/* DELAYS */
.delay-1 { transition: 0.6s ease; transition-delay: 0.2s; }
.delay-2 { transition: 0.6s ease; transition-delay: 0.4s; }
.delay-3 { transition: 0.6s ease; transition-delay: 0.6s; }
.delay-4 { transition: 0.6s ease; transition-delay: 0.8s; }

/* ACTIVE */
.about-premium.active .about-premium__visual {
  transform: translateX(0);
  opacity: 1;
}

.about-premium.active .about-premium__content {
  transform: translateX(0);
  opacity: 1;
}

.about-premium.active .about-premium__text,
.about-premium.active .about-premium__features,
.about-premium.active .about-premium__cta {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MOBILE FIX (0–767px)
========================= */
@media (max-width: 767px) {

  /* SECTION */
  .about-premium {
    padding: 50px 15px;
    background-attachment: scroll; /* FIX mobile bug */
  }

  /* STACK LAYOUT */
  .about-premium__container {
    flex-direction: column;
    gap: 25px;
  }

  /* IMAGE */
  .about-premium__visual {
    width: 100%;
    transform: none;
    opacity: 1;
  }

  .about-premium__image {
    height: 260px; /* reduced */
    border-radius: 12px;
  }

  /* BADGE FIX */
  .about-premium__badge {
    bottom: 10px;
    left: 10px;
    padding: 10px 14px;
    font-size: 11px;
  }

  /* CONTENT */
  .about-premium__content {
    width: 100%;
    padding: 25px 18px;
    transform: none;
    opacity: 1;
  }

  /* TITLE */
  .about-premium__title {
    font-size: 26px;
    line-height: 1.3;
  }

  /* TEXT */
  .about-premium__text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 1;
    transform: none;
  }

  /* FEATURES */
  .about-premium__features {
    grid-template-columns: 1fr; /* single column */
    gap: 10px;
    opacity: 1;
    transform: none;
  }

  .about-premium__features div {
    font-size: 13px;
  }

  /* CTA */
  .about-premium__cta {
    width: 100%;
    padding: 14px;
    text-align: center;
    opacity: 1;
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9b9c934 */<!-- =========================
   CSS
========================= -->
<style>

/* SECTION */
.location-section {
  padding: 80px 20px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

/* PARALLAX DESKTOP ONLY */
@media (min-width: 1024px) {
  .location-section {
    background-attachment: fixed;
  }
}

/* CONTAINER */
.location-box {
  max-width: 1200px;
  margin: auto;
  background: #e9e9e9;
  border-radius: 20px;
  padding: 50px;

  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.location-left {
  flex: 1;
}

.location-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.location-title span {
  color: #2e7d32;
}

.location-desc {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 25px;
}

/* CARD */
.location-card {
  background: #ffffff;
  padding: 22px 15px;
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.location-card .icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.location-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 4px;
}

.location-card p {
  font-size: 13px;
  color: #666;
}

/* RIGHT */
.location-right {
  flex: 1;
  position: relative;
}

.location-right img {
  width: 100%;
  border-radius: 20px;
}

/* BADGE */
.badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
}

.badge strong {
  display: block;
  color: #2e7d32;
}

.badge span {
  font-size: 13px;
  color: #666;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

  .location-section {
    padding: 50px 15px;
  }

  .location-box {
    flex-direction: column;
    padding: 25px 18px;
    gap: 25px;
    border-radius: 14px;
  }

  .location-title {
    font-size: 24px;
  }

  .location-desc {
    font-size: 14px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .location-card {
    padding: 16px;
  }

  .location-right img {
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
  }

  .badge {
    bottom: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .badge strong {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-97e2807 *//* =========================
   GLOBAL
========================= */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #fff;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center / cover no-repeat fixed;
}


/* =========================
   STORY WRAPPER
========================= */
.story-wrapper {
  position: relative;
  height: 400vh;
}


/* =========================
   HEADING
========================= */
.main-heading {
  position: sticky;
  top: 0;
  z-index: 10;

  padding: 40px 20px;
  text-align: center;

  font-size: 36px;
  font-weight: 700;

  
}


/* =========================
   STORY CONTAINER
========================= */
.story-container {
  position: sticky;
  top: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 80vh;
  overflow: hidden;
}


/* =========================
   STORY BLOCK
========================= */
.story-block {
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  width: 80%;
  height: 100%;

  padding: 30px;
  border-radius: 20px;

  opacity: 0;
  transform: scale(0.9) translateY(40px);
  transition: all 0.8s ease;

  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}

.story-block.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
}


/* =========================
   IMAGE
========================= */
.story-image {
  width: 50%;
  height: 100%;

  border-radius: 20px;
  background-size: cover;
  background-position: center;

  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}


/* =========================
   CONTENT
========================= */
.story-content {
  width: 45%;
}

.story-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
}

.story-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
}


/* =========================
   MOBILE STORY OPTIMIZED (0–767px)
========================= */
@media (max-width: 767px) {

  /* FIX BACKGROUND VISIBILITY */
  body {
    background-attachment: scroll;
  }

  /* WRAPPER */
  .story-wrapper {
    height: auto;
    padding-bottom: 20px;
  }

  /* HEADING */
  .main-heading {
    position: relative;
    top: auto;
    font-size: 24px;
    padding: 25px 15px;
    color: #222;
    text-align: center;
  }

  /* CONTAINER */
  .story-container {
    position: relative;
    top: auto;
    height: auto;

    display: flex;
    flex-direction: column;
    gap: 20px;

    padding: 15px;
  }

  /* CARD */
  .story-block {
    position: relative;
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;

    padding: 18px;
    border-radius: 16px;

    background: #ffffff; /* FIX readability */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    opacity: 1;
    transform: none;
    transition: none;
  }

  /* IMAGE */
  .story-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }

  /* CONTENT */
  .story-content {
    width: 100%;
    margin-top: 10px;
  }

  .story-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111; /* FIX contrast */
  }

  .story-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
  }

  /* REMOVE HEAVY EFFECTS */
  .story-block {
    backdrop-filter: none;
  }

  /* DISABLE ANIMATIONS */
  .story-block,
  .story-block.active {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cdb9ebd */.gg-amenities {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e6f4ec, #ffffff);
}

/* FIX FOR ELEMENTOR WIDTH */
.gg-amenities {
  width: 100%;
}

/* CONTAINER */
.gg-amenities__wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);

  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* HEADER */
.gg-amenities__header {
  text-align: center;
  margin-bottom: 60px;
}

.gg-amenities__header h2 {
  font-size: 38px;
  color: #0b3d2e;
  margin: 0;
}

.gg-amenities__header span {
  color: #00c853;
}

.gg-amenities__header p {
  margin-top: 10px;
  color: #666;
}

/* GRID */
.gg-amenities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LIST */
.gg-amenities__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.gg-amenities__card {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.gg-amenities__card:hover {
  transform: translateX(8px);
}

/* ICON */
.gg-amenities__icon {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg,#00c853,#0b3d2e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* TEXT */
.gg-amenities__card h4 {
  margin: 0;
  font-size: 16px;
  color: #0b3d2e;
}

.gg-amenities__card p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #666;
}

/* IMAGE STACK */
.gg-amenities__images {
  position: relative;
  height: 420px;
  min-height: 420px; /* CRITICAL FIX */
}

.gg-amenities__images img {
  position: absolute;
  width: 70%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gg-amenities__images img:nth-child(1) {
  top: 0;
  left: 0;
}

.gg-amenities__images img:nth-child(2) {
  top: 100px;
  right: 0;
}

.gg-amenities__images img:nth-child(3) {
  bottom: 0;
  left: 60px;
}

/* ANIMATION FIX */
.gg-animate {
  opacity: 1; /* FORCE VISIBLE */
  transform: none;
}

/* =========================
   COMPLETE MOBILE FIX
========================= */
@media (max-width: 767px) {

  /* SECTION */
  .gg-amenities {
    padding: 50px 15px;
  }

  /* WRAPPER */
  .gg-amenities__wrapper {
    padding: 20px;
    border-radius: 14px;
    backdrop-filter: none; /* remove heavy blur */
  }

  /* HEADER */
  .gg-amenities__header h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .gg-amenities__header p {
    font-size: 14px;
  }

  /* GRID */
  .gg-amenities__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* LIST */
  .gg-amenities__list {
    gap: 15px;
  }

  /* CARD */
  .gg-amenities__card {
    padding: 14px;
    border-radius: 10px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  /* ICON */
  .gg-amenities__icon {
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
  }

  /* TEXT */
  .gg-amenities__card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .gg-amenities__card p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* =========================
     IMAGE FIX (MAIN ISSUE)
  ========================= */
  .gg-amenities__images {
    display: flex;
    flex-direction: column;
    gap: 12px;

    height: auto;
    min-height: unset;
  }

  .gg-amenities__images img {
    position: relative !important;   /* REMOVE ABSOLUTE */
    width: 100% !important;
    height: 180px;

    object-fit: cover;
    border-radius: 12px;

    /* RESET ALL DESKTOP POSITIONS */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  /* DISABLE HOVER EFFECT */
  .gg-amenities__card:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e8784ff *//* RESET (SCOPED) */
.ig-wrapper *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* WRAPPER (instead of body) */
.ig-wrapper{
  font-family:Arial, sans-serif;
  background:#f8fafc;
}

/* SECTION */
.ig-gallery{
  overflow:hidden;
  width:100%;
  padding:100px 0;
  background:linear-gradient(to bottom, #ffffff, #f1f5f9);
}

/* HEADING */
.ig-header{
  text-align:center;
  margin-bottom:60px;
  padding:0 20px;
}

.ig-title{
  font-size:42px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:10px;
}

.ig-subtitle{
  font-size:16px;
  color:#64748b;
}

/* TRACK */
.ig-track{
  display:flex;
  width:calc(380px * 12);
  animation:ig-scroll 28s linear infinite;
}

/* ITEM */
.ig-item{
  width:360px;
  margin-right:20px;
  flex-shrink:0;
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:transform 0.3s ease;
}

/* IMAGE */
.ig-img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:transform 0.5s ease;
}

/* HOVER */
.ig-item:hover{
  transform:translateY(-8px);
}

.ig-item:hover .ig-img{
  transform:scale(1.08);
}

/* OVERLAY */
.ig-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(255,255,255,0.4), transparent);
}

/* ANIMATION */
@keyframes ig-scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.ig-gallery:hover .ig-track{
  animation-play-state:paused;
}


/* =========================
   MOBILE HERO HEIGHT FIX
========================= */
@media (max-width: 768px) {

  .hero {
    height: auto;              /* remove forced full height */
    min-height: 75vh;          /* controlled shorter hero */
    padding: 60px 15px 50px;   /* add spacing instead */
  }

  .hero video {
    height: 100%;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .logo {
    width: 130px;
  }

  .btn {
    width: 100%;              /* better mobile UX */
    max-width: 280px;
    padding: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8a9e028 *//* SECTION */
.gg-faq-split{
  padding:100px 20px;
  background:#f9fafb;
}

/* WRAPPER */
.gg-faq-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:60px;
  align-items:start;
}

/* LEFT */
.gg-faq-left h2{
  font-size:48px;
  font-weight:600;
  color:#0f172a;
  line-height:1.2;
}

.gg-faq-left span{
  color:#6b7280;
  font-weight:400;
}

.gg-faq-left p{
  margin-top:20px;
  color:#64748b;
  font-size:16px;
  max-width:400px;
}

/* RIGHT */
.gg-faq-right{
  border-top:1px solid #e5e7eb;
}

/* ITEM */
.gg-faq-item{
  border-bottom:1px solid #e5e7eb;
  padding:18px 0;
}

/* QUESTION */
.gg-faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  font-size:18px;
  font-weight:500;
  color:#0f172a;
  cursor:pointer;
  position:relative;
  padding-right:30px;
}

/* ARROW */
.gg-faq-question::after{
  content:"›";
  position:absolute;
  right:0;
  font-size:22px;
  transform:rotate(0deg);
  transition:0.3s;
}

/* ACTIVE */
.gg-faq-item.active .gg-faq-question::after{
  transform:rotate(90deg);
}

/* ANSWER */
.gg-faq-answer{
  max-height:0;
  overflow:hidden;
  color:#475569;
  font-size:15px;
  transition:all 0.3s ease;
  margin-top:10px;
}

.gg-faq-item.active .gg-faq-answer{
  max-height:200px;
}

/* RESPONSIVE */
@media(max-width:900px){

  .gg-faq-wrapper{
    grid-template-columns:1fr;
  }

  .gg-faq-left h2{
    font-size:32px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2789742 *//* SCOPE FIX */
.contact-scope {
  font-family: 'Segoe UI', sans-serif;
}

/* RESET */
.contact-scope * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION */
.contact-scope .contact-hero {
  min-height: 100vh;
  background: linear-gradient(rgba(11,61,46,0.65), rgba(11,61,46,0.65)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* CARD */
.contact-scope .contact-card {
  width: 100%;
  max-width: 1100px;
  display: flex;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* LEFT */
.contact-scope .contact-info {
  width: 40%;
  padding: 50px;
  color: #fff;
}

.contact-scope .contact-info h2 {
  font-size: 34px;
  font-family: serif;
  margin-bottom: 20px;
}

.contact-scope .contact-info p {
  margin-bottom: 20px;
  opacity: 0.9;
}

/* RIGHT */
.contact-scope .contact-form-box {
  width: 60%;
  background: rgba(255,255,255,0.95);
  padding: 50px;
}

.contact-scope .contact-form-box h2 {
  font-family: serif;
  margin-bottom: 25px;
  color: #0b3d2e;
}

/* FORM */
.contact-scope .form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ROW */
.contact-scope .row {
  display: flex;
  gap: 15px;
}

/* INPUTS */
.contact-scope input,
.contact-scope select,
.contact-scope textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-scope input:focus,
.contact-scope select:focus,
.contact-scope textarea:focus {
  border-color: #0b3d2e;
  box-shadow: 0 0 0 2px rgba(11,61,46,0.1);
}

.contact-scope textarea {
  height: 90px;
  resize: none;
}

/* FORM BOTTOM */
.contact-scope .form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* TERMS */
.contact-scope .form-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #333;
  max-width: 70%;
}

.contact-scope .form-terms input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-scope .form-terms label {
  cursor: pointer;
}

/* BUTTON */
.contact-scope .form-btn {
  background: linear-gradient(135deg, #0b3d2e, #075c43);
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  min-width: 160px;
}

.contact-scope .form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-scope .form-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* SUCCESS MESSAGE */
#success-msg {
  font-size: 14px;
}

/* =========================
   MOBILE OPTIMIZATION FIX
========================= */
@media (max-width: 768px) {

  /* STACK CARD */
  .contact-scope .contact-card {
    flex-direction: column;
    border-radius: 12px;
  }

  /* LEFT SECTION */
  .contact-scope .contact-info {
    width: 100%;
    padding: 25px 20px;
  }

  .contact-scope .contact-info h2 {
    font-size: 24px;
  }

  .contact-scope .contact-info p {
    font-size: 14px;
  }

  /* RIGHT FORM */
  .contact-scope .contact-form-box {
    width: 100%;
    padding: 25px 20px;
  }

  .contact-scope .contact-form-box h2 {
    font-size: 22px;
  }

  /* INPUT ROW FIX */
  .contact-scope .row {
    flex-direction: column;
    gap: 10px;
  }

  /* INPUTS */
  .contact-scope input,
  .contact-scope select,
  .contact-scope textarea {
    font-size: 14px;
    padding: 14px;
  }

  /* TEXTAREA HEIGHT */
  .contact-scope textarea {
    height: 100px;
  }

  /* FORM BOTTOM STACK */
  .contact-scope .form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-scope .form-terms {
    max-width: 100%;
    font-size: 13px;
  }

  /* BUTTON FULL WIDTH */
  .contact-scope .form-btn {
    width: 100%;
    text-align: center;
  }

  /* HERO PADDING REDUCE */
  .contact-scope .contact-hero {
    padding: 20px 12px;
  }
}/* End custom CSS */