/* ============================================
   G & C Stays — Theme Stylesheet
   ============================================ */

:root {
  /* --gc-teal: #26221F; */
  --gc-teal: #0c2951;
  --gc-teal-dark: #0c2951;
  --gc-white: #fff;
  /* --gc-teal-dark: #1B1815; */
  --gc-gold: #ba8f4b;
  --gc-blue: #0c2951;
  --gc-cream: #EFE3CB;
  --gc-bg: #F3EADB;
  --gc-page: #FBF6EE;
  --gc-text: #26221F;
  --gc-text-muted: #6E6459;
  --gc-border: #E8DECB;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
--font-body: 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gc-text);
  background: var(--gc-page);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s ease, background .2s ease, opacity .2s ease;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--gc-teal);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.gc-eyebrow {
  /* font-family: var(--font-heading); */
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: .75em;
}

.gc-eyebrow-light {
  color: var(--gc-page);
}

.bg-white{
  background: #fff;
}

.gc-section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.gc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  /* font-family: var(--font-heading); */
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.gc-btn-primary {
  background: var(--gc-gold);
  color: var(--gc-page);
}

.gc-btn-primary:hover {
  background: var(--gc-blue);
  color: var(--gc-white);
}

.gc-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.gc-btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
}

/* ============================================
   Header
   ============================================ */
.gc-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--gc-page);
  box-shadow: 0 2px 10px rgba(18, 59, 57, .08);
}

.gc-header-topbar {
  background: var(--gc-teal-dark);
  color: #fff;
  font-size: .82rem;
  display: none;
}

.gc-topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.gc-topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.gc-topbar-left a,
.gc-topbar-right a {
  color: #E7E0D4;
}

.gc-topbar-left a:hover,
.gc-topbar-right a:hover {
  color: var(--gc-gold);
}

.gc-topbar-left i {
  color: var(--gc-gold);
  margin-right: 4px;
}

.gc-topbar-right {
  display: flex;
  gap: 14px;
}

.gc-topbar-right a {
  font-size: .95rem;
}

/* .gc-header-main {
  padding: 14px 0;
} */

.gc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gc-brand img {
  height: 100px;
  width: auto;
}
.gc-header-main {
    padding: 10px 0;
}
.gc-nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.gc-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.gc-menu a {
  /* font-family: var(--font-heading); */
  font-weight: 600;
  font-size: .95rem;
  color: var(--gc-teal);
}

.gc-menu a:hover {
  color: var(--gc-gold);
}

.gc-menu li.current-menu-item>a {
  color: var(--gc-gold);
}

.gc-nav-mobile-btn {
  display: none;
}

.gc-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* .gc-header-btn {
  padding: 11px 24px;
} */

.gc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.gc-nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gc-teal);
  display: block;
}


/* ============================================
   Hero / Inner Banner
   ============================================ */
.gc-hero,
.gc-inner-banner {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.gc-inner-banner {
  min-height: 340px;
  padding: 70px 0;
}

.gc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gc-teal);
}

.gc-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-hero-bg-mobile {
  display: none;
}

.gc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 40, 39, .55) 0%, rgba(12, 40, 39, .75) 100%);
}

.gc-hero .container,
.gc-inner-banner .container {
  position: relative;
  z-index: 1;
}

.gc-hero-content {
  max-width: 720px;
}

.gc-hero h1,
.gc-inner-banner h1 {
  color: #fff;
}

.gc-hero-subtext {
  font-size: 1.1rem;
  color: var(--gc-page);
  max-width: 600px;
  margin-bottom: 24px;
}

.gc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================
   Heading Intro
   ============================================ */
.gc-heading-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gc-heading-intro-text {
  color: var(--gc-text-muted);
  font-size: 1.1rem;
}

.gc-heading-intro-inner p:last-child{
  margin-bottom: 0;
}

/* ============================================
   Stats Band
   ============================================ */
.gc-stats-band {
  background: var(--gc-teal);
  padding: 56px 0;
}

.gc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.gc-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gc-gold);
  margin-bottom: 4px;
}

.gc-stat-label {
  color: #DCE7E5;
  font-size: .95rem;
  margin: 0;
}

/* ============================================
   Cards (Service / Why Choose)
   ============================================ */

.gc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}


.gc-why-card {
  background: var(--gc-bg);
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  padding: 32px 26px;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gc-service-card{
  background: var(--gc-bg);
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  /* padding: 32px 26px; */
  overflow: hidden;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}

a.gc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(18, 59, 57, .12);
}


.gc-why-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}
.gc-why-card h3 {
  font-family: var(--font-body);
}
.gc-service-card-icon{
  width: 100%;
  height: 250px;
}

.gc-service-card-icon img,
.gc-why-card-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gc-service-card p,
.gc-why-card p {
  color: var(--gc-text-muted);
  margin-bottom: 0;
}

/* ============================================
   Content + Image Band
   ============================================ */
.gc-content-image-row {
  display: flex;
  align-items: center;
  gap: 56px;
}

.gc-image-left .gc-content-image-row {
  flex-direction: row-reverse;
}

.gc-content-image-text,
.gc-content-image-media {
  flex: 1 1 0;
}

.gc-content-image-media img {
  border-radius: 14px;
}

.gc-wysiwyg {
  color: var(--gc-text-muted);
}

.gc-wysiwyg ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1em;
}

.gc-wysiwyg ul li {
  margin-bottom: .4em;
}

/* ============================================
   Process Steps
   ============================================ */
.gc-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.gc-step-item {
    text-align: left;
    padding: 20px;
    border: 1px solid var(--gc-border);
    border-radius: 14px;
    background-color: var(--gc-bg);
}

.gc-step-item h3 {
  font-family: var(--font-body);
}
.gc-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gc-gold);
  color: var(--gc-page);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.gc-step-item p {
  color: var(--gc-text-muted);
}

/* ============================================
   Property Showcase
   ============================================ */
.gc-property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.gc-property-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gc-border);
  background: #fff;
}

.gc-property-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gc-property-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-property-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gc-gold);
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.gc-property-card-body {
  padding: 20px 22px 24px;
}
.gc-property-card-body h3 {
  font-family: var(--font-body);
}
.gc-property-location {
  color: var(--gc-text-muted);
  font-size: .9rem;
}

.gc-property-location i {
  color: var(--gc-gold);
  margin-right: 6px;
}

.gc-property-link {
  font-weight: 600;
  color: var(--gc-teal);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gc-property-link:hover {
  color: var(--gc-gold);
}

.gc-property-btn{
  margin-top: 40px;
}
/* ============================================
   Testimonials
   ============================================ */

.gc-testimonial-swiper {
    padding-bottom: 40px;
}

.gc-testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.gc-testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.gc-testimonial-card {
    background: var(--gc-bg);
    border: 1px solid var(--gc-border);
    border-radius: 14px;
    padding: 32px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gc-testimonial-rating {
    color: var(--gc-gold);
    margin-bottom: 12px;
}

.gc-testimonial-rating .gc-star-empty {
    color: #D9D2C4;
}

.gc-testimonial-quote {
    font-style: italic;
    color: var(--gc-text);
    flex-grow: 1; /* Makes all cards equal height */
}

.gc-testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.gc-testimonial-person img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.gc-testimonial-name {
    font-weight: 700;
    margin: 0;
    color: var(--gc-teal);
}

.gc-testimonial-role {
    margin: 0;
    color: var(--gc-text-muted);
    font-size: .85rem;
}

.swiper-pagination-bullet-active {
    background: var(--gc-gold) !important;
}

/* ============================================
   CTA Banner
   ============================================ */
.gc-cta-banner {
  background: var(--gc-teal);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 70px 0;
}

.gc-cta-has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 40, 39, .72);
}

.gc-cta-banner .container {
  position: relative;
  z-index: 1;
}

.gc-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.gc-cta-inner h2 {
  color: #fff;
}

.gc-cta-inner p {
  color: #DCE7E5;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.gc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.gc-faq-item {
  border-bottom: 1px solid var(--gc-border);
}

.gc-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 4px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gc-teal);
}

.gc-faq-question i {
  transition: transform .25s ease;
  color: var(--gc-gold);
  flex-shrink: 0;
}

.gc-faq-item.gc-faq-open .gc-faq-question i {
  transform: rotate(180deg);
}

.gc-faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.gc-faq-item.gc-faq-open .gc-faq-answer-wrap {
  max-height: 600px;
}

.gc-faq-answer {
  padding: 0 4px 20px;
  color: var(--gc-text-muted);
}

/* ============================================
   Contact Section
   ============================================ */
.gc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.gc-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
}

.gc-contact-info-item i {
  color: var(--gc-gold);
  margin-top: 4px;
}

.gc-contact-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.gc-form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gc-form-row label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gc-teal);
}

.gc-form-row input,
.gc-form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--gc-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  width: 100%;
}
.gc-form-row textarea {
    min-height: 100px;
    height: 100px;
}
.gc-form-row input:focus,
.gc-form-row textarea:focus {
  outline: none;
  border-color: var(--gc-gold);
}

.gc-form-note {
  color: var(--gc-text-muted);
  font-size: .85rem;
  margin-top: 10px;
}

.gc-form-notice {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.gc-form-success {
  background: #E6F3E9;
  color: #1F6D3B;
}

.gc-form-error {
  background: #FBE9E7;
  color: #A6392C;
}



/* ============================================
   Blog
   ============================================ */
.gc-blog-banner {
  background: var(--gc-teal);
  color: #fff;
  padding: 90px 0 60px;
  text-align: center;
}

.gc-blog-banner h1 {
  color: #fff;
}

.gc-blog-banner .gc-eyebrow {
  color: var(--gc-gold);
}

.gc-archive-desc {
  color: #DCE7E5;
}

.gc-blog-grid {
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gc-blog-card {
    border: 1px solid var(--gc-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    width: 31%;
}

.gc-blog-card-thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gc-bg);
}

.gc-blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-blog-card-body {
  padding: 22px 24px;
}

.gc-blog-card-meta {
  color: var(--gc-text-muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.gc-blog-card-title {
  font-size: 1.15rem;
  margin: 6px 0 10px;
  font-family: var(--font-body);
}

.gc-blog-card-title a:hover {
  color: var(--gc-gold);
}

.gc-blog-card-excerpt {
  color: var(--gc-text-muted);
  font-size: .92rem;
}

.gc-blog-card-link {
  font-weight: 600;
  color: var(--gc-teal);
  font-size: .9rem;
}

.gc-blog-card-link:hover {
  color: var(--gc-gold);
}

.gc-blog-preview-cta {
  text-align: center;
  margin-top: 40px;
}

.gc-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.gc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--gc-border);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gc-teal);
}

.gc-pagination .page-numbers.current {
  background: var(--gc-teal);
  color: #fff;
  border-color: var(--gc-teal);
}

.gc-pagination .page-numbers:hover {
  background: var(--gc-gold);
  border-color: var(--gc-gold);
  color: var(--gc-teal-dark);
}

/* Single post */
.gc-single-banner {
  background: var(--gc-teal);
  color: #fff;
  padding: 90px 0 50px;
  text-align: center;
}

.gc-single-banner h1 {
  color: #fff;
  max-width: 820px;
  margin: 0 auto .3em;
}

.gc-single-meta {
  color: #DCE7E5;
}

.gc-single-container {
  max-width: 820px;
}

.gc-single-thumb {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.gc-single-body {
  font-size: 1.05rem;
  color: var(--gc-text);
}

.gc-single-body p {
  margin-bottom: 1.3em;
}

.gc-single-body img {
  border-radius: 10px;
  margin: 1em 0;
}

.gc-single-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.gc-single-tags a {
  background: var(--gc-bg);
  border: 1px solid var(--gc-border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
}

.gc-author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--gc-bg);
  padding: 22px;
  border-radius: 12px;
  margin: 30px 0;
}

.gc-author-box img {
  border-radius: 50%;
}

.gc-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gc-teal);
  margin: 0;
}

.gc-author-bio {
  color: var(--gc-text-muted);
  margin: 4px 0 0;
  font-size: .92rem;
}

/* Comments */
.gc-comments-wrap {
  margin-top: 50px;
  border-top: 1px solid var(--gc-border);
  padding-top: 40px;
}

.gc-comments-title {
  margin-bottom: 20px;
}

.gc-comment-list {
  list-style: none;
  padding: 0;
}

.gc-comment-list .comment-body {
  border-bottom: 1px solid var(--gc-border);
  padding: 20px 0;
}

.gc-comment-list ol {
  list-style: none;
  padding-left: 30px;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gc-border);
  border-radius: 6px;
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.comment-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gc-teal);
}

/* ============================================
   404
   ============================================ */
.gc-404 {
  text-align: center;
  padding: 120px 0;
}

.gc-404-code {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--gc-gold);
  margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.gc-footer {
    background: var(--gc-page);
    color: #DCE7E5;
    padding: 64px 0 0;
    position: relative;
    z-index: 99;
}


/* .gc-footer::after {
    content: '';
    background-image: url(../images/gs_white_logo_only.svg);
    position: absolute;
    top: 0;
    display: block;
    width: 65%;
    height: 100%;
    opacity: 0.09;
    background-repeat: no-repeat;
    background-position: right bottom;
    right: 17px;
    background-size: contain;
    z-index: -1;
} */


.gc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.gc-footer-brand img {
  height: 110px;
  margin-bottom: 16px;
}

.gc-footer-tagline {
  color: var(--gc-blue);
  max-width: 320px;
}

.gc-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.gc-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gc-blue);
}

.gc-footer-social a:hover {
  background: var(--gc-gold);
  color: var(--gc-bg);
  border-color: var(--gc-gold);
}

.gc-footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gc-blue);
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.gc-footer-links li {
  margin-bottom: 12px;
}

.gc-footer-links li a{
  color: var(--gc-blue);
}

.gc-footer-links a:hover {
  color: var(--gc-gold);
}

.gc-footer-contact li a{
  display: flex;
  align-items: start;
  gap: 8px;
}

.gc-footer-contact i {
  color: #fff;
  width: 32px;
  height: 32px;
  background-color: var(--gc-gold);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-footer-bottom {
  border-top: 1px solid var(--gc-blue);
  padding: 20px 0;
}

.gc-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 10px;
  font-size: .85rem;
  color: #fff;
}

.gc-footer-bottom-row a {
  color: var(--gc-gold);
  font-weight: bold;
}

.gc-footer-bottom-row p {
  margin: 0;
  color: var(--gc-blue);
}

/* ============================================
   Mobile Menu (new, fully independent panel)
   ============================================ */

.gc-mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 40, 39, .55);
  z-index: 1049;
  opacity: 0;
  transition: opacity .3s ease;
}

.gc-mobile-menu-overlay.gc-mobile-menu-open {
  display: block;
  opacity: 1;
}

.gc-mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: var(--gc-page);
  color: var(--gc-blue);
  z-index: 1050;
  overflow-y: auto;
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, .2);
}

.gc-mobile-menu.gc-mobile-menu-open {
  right: 0;
}

.gc-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.gc-mobile-menu-logo img {
  height: 110px;
  width: auto;
}

.gc-mobile-menu-close {
  background: none;
  border: none;
  color: var(--gc-blue);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.gc-mobile-menu-close:hover {
  color: var(--gc-gold);
}

.gc-mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
}

.gc-mobile-menu-contact a {
  color: var(--gc-blue);
  font-weight: bold;
}

.gc-mobile-menu-contact i {
  color: var(--gc-gold);
  margin-right: 6px;
}

.gc-mobile-menu-body {
  flex: 1;
}

/* Cloned WP menu list, restyled for the mobile panel */
.gc-mobile-menu-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-mobile-menu-list > li {
  border-bottom: 1px solid var(--gc-blue);
}

.gc-mobile-menu-list a {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gc-blue);
  padding: 15px 20px;
}

.gc-mobile-menu-list a:hover {
  color: var(--gc-gold);
}

/* Row wraps a top-level link plus its submenu-toggle arrow */
.gc-mobile-menu-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.gc-mobile-menu-row a {
  flex: 1;
}

.gc-mobile-submenu-toggle {
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-mobile-submenu-toggle i {
  transition: transform .25s ease;
}

/* Open state: highlight the parent row + rotate its arrow */
.gc-mobile-has-children.gc-mobile-submenu-open > .gc-mobile-menu-row {
  background: var(--gc-gold);
}

.gc-mobile-has-children.gc-mobile-submenu-open > .gc-mobile-menu-row a,
.gc-mobile-has-children.gc-mobile-submenu-open > .gc-mobile-menu-row .gc-mobile-submenu-toggle {
  color: var(--gc-teal-dark);
}

.gc-mobile-has-children.gc-mobile-submenu-open > .gc-mobile-menu-row .gc-mobile-submenu-toggle {
  border-left-color: rgba(12, 40, 39, .2);
}

.gc-mobile-has-children.gc-mobile-submenu-open > .gc-mobile-menu-row .gc-mobile-submenu-toggle i {
  transform: rotate(180deg);
}

.gc-mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  transition: max-height .3s ease;
}

.gc-mobile-has-children.gc-mobile-submenu-open > .gc-mobile-submenu {
  max-height: 600px;
}

.gc-mobile-submenu a {
  padding-left: 34px;
  font-size: .92rem;
  font-weight: 500;
}

.gc-mobile-menu-cta {
  padding: 16px 20px 26px;
}

.gc-mobile-menu-cta .gc-btn {
  width: 100%;
  justify-content: center;
}

body.gc-mobile-menu-active {
  overflow: hidden;
}

/* ============================================================ */

.service-cards-content{
  padding: 20px;
}

/* Service Slider */

.gc-service-slider .splide__track{
    overflow:hidden;
}

.gc-service-slider .splide__list{
  display: flex;
    align-items:stretch;
}

.gc-service-slider .splide__slide{
    height:auto;
    display:flex;
}

.gc-service-slider .gc-service-card{
    display:flex;
    flex-direction:column;
    width:100%;
}

.gc-service-slider .service-cards-content{
  display: flex;
    flex-direction: column;
    flex:1;
}
.gc-service-slider .service-cards-content h3 {
  font-family: var(--font-body);
}
.gc-service-slider .splide__pagination{
  bottom: -2rem;
}
.gc-service-slider .splide__pagination__page.is-active{
background: var(--gc-gold);
}


.sticky-header-btn-call{
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-call-btn a{
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-weight: bold;
  color: var(--gc-blue);
}

.sticky-call-btn a:hover{
  color: var(--gc-gold);
  transition: all 0.3s ease;
}
.sticky-call-btn i,
.sticky-call-btn-icon i{
  background-color: var(--gc-gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 17px;
  color: #fff;
}

.sticky-call-btn-icon{
  display: none;
}


/* ===================== Responsive ================= */

@media (max-width:1199px){
  .gc-nav-toggle {
    display: flex;
  }
  .gc-nav-main {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--gc-page);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .15);
    transition: right .3s ease;
    z-index: 1000;
    display: none !important;
  }

  .gc-nav-main.gc-nav-open {
    right: 0;
  }

  .gc-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gc-topbar-left {
    display: none;
  }

  .gc-nav-mobile-btn {
    display: inline-flex;
    margin-top: 8px;
  }

    /* .gc-mobile-menu,
  .gc-mobile-menu-overlay {
    display: none !important;
  } */
}

@media (max-width:1099px){
  .gc-steps-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
.gc-brand img{
  height: 93px;
}
.gc-blog-card {
    width: 47%;
}
}

@media (max-width: 900px) {
  .gc-contact-grid {
    grid-template-columns: 1fr;
  }
  .gc-contact-map{
    height: 350px;
  }
  .gc-contact-map iframe{
    height: 100%;
  }
}

@media (max-width: 767px) {
  .gc-footer-grid {
    grid-template-columns: 1fr;
  }

    .section-padding {
    padding: 48px 0;
  }

  .gc-service-cards{
    padding-bottom: 80px;
  }

  
  .gc-inner-banner {
    min-height: 420px;
  }

  .gc-inner-banner {
    min-height: 260px;
  }

  .gc-hero-bg-desktop {
    display: none;
  }

  .gc-hero-bg-mobile {
    display: block;
  }

    .gc-content-image-row,
  .gc-image-left .gc-content-image-row {
    flex-direction: column;
    gap: 30px;
  }

  .gc-stats-grid {
  grid-template-columns: repeat(2, 1fr);
}

  /* .gc-header-btn {
    display: none;
  } */
}


@media (max-width: 576px) {
  .gc-footer::after {
    width: 92%;
  }
  .gc-blog-card {
    width: 100%;
  }
  .gc-header-right{
    gap: 12px;
  }

  .sticky-call-btn-icon i{
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .sticky-call-btn{
    display: none;
  }

  .sticky-call-btn-icon{
    display: block;
  }

  .gc-brand img {
    height: 76px;
  }

  .gc-stat-number{
    font-size: 2.2rem;
  }

  .gc-stat-number{
    font-size: 2rem;
  }

  .gc-steps-grid{
    grid-template-columns: 1fr;
  }

  .gc-hero{
    padding: 60px 0;
  }

  .gc-heading-intro-text{
    font-size: 1rem;
  }
}

@media (max-width:475px){
    .gc-stats-grid {
  grid-template-columns: repeat(1, 1fr);
}

}

@media (max-width:375px){
  .gc-btn{
    padding: 10px 20px;
  }
}


.gc-testimonial-swiper .swiper-pagination-bullet {
  transition: transform .2s linear;
}
.gc-testimonial-swiper .swiper-pagination-bullet-active {
  transform: scale(1.4);
}
.footer-gc-btn {
    margin-top: 15px;
}

.blog-pagination {
    margin-top: 50px;
}

.blog-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.blog-pagination li {
    margin: 0;
}

.blog-pagination a,
.blog-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gc-gold);
    background: #fff;
    color: var(--gc-gold);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}

.blog-pagination a:hover {
    background: var(--gc-gold);
    color: #fff;
    border-color: var(--gc-gold);
}

.blog-pagination .current {
    background: var(--gc-gold);
    color: #fff;
    border-color: var(--gc-gold);
}

.blog-pagination .dots {
    border: none;
    background: transparent;
    color: #3C3C3C;
    min-width: auto;
    padding: 0 8px;
}
.single-blog-pagination {
    display: flex;
    justify-content: space-between;
}

.single-blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.single-blog-pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.gc-inner-banner h1 {
    text-align: center;
}