/* premium-homepage.css */

:root {
  --royal-green: #154d29;
  --secondary-green: #2a8741;
  --pure-black: #000;
  --primary-color: #009688;
  --secondary-color: #0d0d0d;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1a1a;
}
body {
  font-family: 'wpgtr-luxury', serif;
  line-height: 1.6;
  color: var(--text-color);
}

.homepage{
	overflow-x: hidden!important;
}

.dark{
	background: #000!important;
}

.allbackground{
	background: radial-gradient(circle at top left, #154d2970 2%, rgba(0, 0, 0, 1) 100%);
}

.containers {
  width: 98%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  display: block;
  overflow: hidden!important;
}
/*
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
}

*/

.section-title {
  font-family: "wpgtr-luxury", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #2c2c2c;
  position: relative;
  padding: 1.5rem 0;
  line-height: 1.2;
  margin: 2rem 0;
  text-align: center;
  background: linear-gradient(45deg, #fff 30%, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Decorative elements
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.section-title::before {
  top: 0;
  width: 160px;
}

.section-title::after {
  bottom: 0;
  width: 90px;
}

.section-title:hover::before {
  width: 140px;
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 80px;
  transition: width 0.3s ease;
}


*/


.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

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

.btn-large {
  font-size: 1.1rem;
  padding: 16px 32px;
}

/* Hero Section 
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__content {
    flex: 1;
    padding: 0 5%;
    z-index: 2;
}

.hero__title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

*/

/* New Hero */
/*
.hero {
    min-height: 60vh;
	max-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(
        45deg,
        #000000,
        #000,
        #000,
        #111
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    padding: 2rem;
}

@media screen and (min-width: 769px) and (max-width: 1199px){
	.hero{
		min-height: 40vh; max-height: 40vh;
	}
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero__content {
    flex: 1;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.8s ease 0.2s forwards;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    color: #cccccc;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.8s ease 0.4s forwards;
}

.hero__image {
    flex: 1;
    position: relative;
    z-index: 1;
    transform: translateX(100px);
    opacity: 0;
    animation: slideInRight 1s ease 0.6s forwards;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero__image:hover img {
    transform: scale(1.02) translateY(-5px);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn-primary {
    background: linear-gradient(90deg, #009688, #4CAF50);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(45deg, #ffd700, #d4af37);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem;
    }

    .hero__content {
        margin-bottom: 2rem;
    }

    .hero__image {
        width: 100%;
    }

    .hero__image img {
        max-height: 50vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,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');
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

*/

/* New latest Home */

/* Hero Section Final */

.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80.13%, #0d0d0d 100%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 27.1%,
      rgba(0, 0, 0, 0.25) 59.19%,
      rgba(0, 0, 0, 0.5) 71.5%,
      #000 88.57%
    ),
    url("https://umjourneys.com/wp-content/uploads/2025/03/umj-banner-final-scaled.webp")
      center/cover no-repeat;
	position: relative;
	 background-blend-mode: lighten;
	overflow: hidden!important;
	-webkit-overflow-scrolling: touch!important;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 396px; padding-top: 20px;
    max-width: 600px; position: relative; overflow: hidden;
    width: 100%;
}

.hero-title {
  font-family: 'wpgtr-luxury';
  font-size: 104px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.04px;
  text-align: center;
  background: linear-gradient(88deg, #2a8741 19.82%, #154d29 101.93%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* -webkit-text-stroke: 0.5px #000; */
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.cta-description {
  color: #fff;
  font-family: "wpgtr-luxury", sans-serif;
  font-size: 24px; padding: 10px;
  font-weight: 400;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  text-align: center;
}

.cta-link {
  color: #fff;
  font-family: "wpgtr-luxury", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: #2a8741;
  text-decoration-thickness: 1.6px;
  text-align: center;
  cursor: pointer;
}

p.cta-description {
    top: 62%;
    position: absolute;
}

a.cta-link{
	top: 85%;
	position: absolute;
}

@media screen and (min-width: 721px){
	a.cta-link{
		top: 95%;
	}
}

/*
a.cta-link:after {
    height: 50px;
    content: '';
    position-area: center;
    color: red;
    position: absolute;
    margin-top: 40px;
    background: #008000b8;
    width: 2px;
}
*/

@media (min-width: 721px){
	p.cta-description{
		top: 80%;
	}
}
@media (max-width: 991px) {
	/*
  .hero-content {
    gap: 200px;
  }
*/
	
	.cta-description{
		font-size: 18px;
	}
	
  .hero-title {
    font-size: 70px;
  }
}

@media screen (max-width: 640px) {
  .hero-content {
    gap: 100px;
    margin-bottom: 50px;
  }

  .hero-title {
    font-size: 48px;
  }

  .cta-description {
    font-size: 18px;
  }

  .cta-link {
    font-size: 14px;
  }
}

/* Heros section end */

/* Excursion */

/* —————————————————————————
   Top Destinations Section
————————————————————————— */

.fw-top-destinations {
  padding: 60px 20px;
  background: #000;
  color: #fff;
}
.fw-top-destinations .fw-container {
  max-width: 1200px;
  margin: 0 auto;
}
.fw-section-title {
  font-size: 2.5rem;
  color: #2ecc71;
  text-align: center;
  margin-bottom: 16px;
}
.fw-section-desc {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  color: #bbb;
  line-height: 1.6;
}

/* slider nav (mobile only) */
.fw-slider-nav {
  text-align: right;
  margin-bottom: 12px;
}
.fw-slider-prev,
.fw-slider-next {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  margin-left: 8px;
}

/* default grid—overridden by media queries */
.fw-dest-grid {
  display: grid;
  gap: 20px;
}

a.fw-dest-card:after {
    position: absolute;
    content: '';
    background: linear-gradient(0deg, #000000bf, #dcdcdc00);
    width: 100%;
    height: 50%;
    bottom: 0;
}

/* the cards */
.fw-dest-card {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 60%;
  text-decoration: none;
}
.fw-dest-image {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.fw-dest-card:hover .fw-dest-image {
  transform: scale(1.05);
}
.fw-dest-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.5s;
}
.fw-dest-card:hover .fw-dest-overlay {
  background: rgba(0,0,0,0.45);
}
.fw-dest-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}

/* —————————————————————————
   Desktop: 3-column grid, hide slider nav
————————————————————————— */
@media (min-width: 768px) {
  .fw-slider-nav,
  .fw-slider-prev,
  .fw-slider-next {
    display: none;
  }
  .fw-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —————————————————————————
   Mobile: horizontal slider
————————————————————————— */
@media (max-width: 767px) {
  .fw-dest-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .fw-dest-grid::-webkit-scrollbar {
    display: none;
  }
  .fw-dest-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .fw-dest-card {
    flex: 0 0 80%;
    margin-right: 16px;
    scroll-snap-align: start;
  }
  .fw-dest-title {
    font-size: 1rem;
    bottom: 8px;
    left: 8px;
  }
  .fw-section-title {
    font-size: 2rem;
  }
}

/* Excursion End */

/* New Final services */

.premium-services {
    display: flex;
    min-height: 60vh;
    background-color: #0d0d0d;
    overflow: hidden;
    color: #ffffff;
    position: relative;
}

/*
section.premium-services:before {
    content: '';
    display: inline-flex;
    padding-left: 70px;
    align-items: center;
    filter: blur(400px);
    position: absolute;
    background: var(--royal-green, #2A8741);
    width: 323px;
    height: 307px;
    flex-shrink: 0;
    top: 200px;
}

*/

.container1 {
  display: flex;
  width: 100%;
  padding: 40px; overflow-x: hidden;
  gap: 40px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  width: 630px;
  gap: 40px;
  position: relative;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.title-group {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 8px;
}

.main-title {
  font-family: "wpgtr-luxury", sans-serif;
  font-size: 50px;
  line-height: 1;
  margin: 0!important;
  letter-spacing: 0.6px;
  background: linear-gradient(to right, #2a8741, #154d29);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-family: "wpgtr-luxury", sans-serif;
  font-size: 40px; margin: 0!important;
  letter-spacing: 0.4px;
  position: absolute;
  top: 80%;
}

.description {
  font-family: "wpgtr-luxury", sans-serif;
  font-size: 16px;
  line-height: 140%;
  text-align: left;
  letter-spacing: 0.16px;
  white-space-collapse: preserve-breaks;

}

.services-grid {
  display: grid;
  margin-top: 5%!important;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 10%;
  bottom: 0!important;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 10px !important;
    box-shadow: 0px 2px 4px 0px #008000e6;
    gap: 16px;
    border: 1px solid rgba(21, 77, 41, 0.1);
}

.service-title {
    font-family: "wpgtr-luxury", sans-serif;
    font-size: 24px;
    letter-spacing: 0.24px;
    background: linear-gradient(to right, #2a8741, #154d29);
    margin: 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-description {
    font-family: "wpgtr-luxury", sans-serif;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0.14px;
    margin: 0;
}

.feature-image {
  width: 600px;
  height: auto;
  z-index: 1;
  object-fit: cover;
}

@media (max-width: 991px) {
  .container {
    padding: 40px;
    flex-direction: column;
  }


  .content-wrapper {
    width: 100%;
  }

  .main-title {
    font-size: 35px;
  }

  .subtitle {
    font-size: 25px;
	top: 100%!important;
  }

  .description {
    width: 100%;	}
  

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .feature-image {
    width: 50%;
  }
	
}


.premium-services .container1{
	justify-content: center;
	padding-top: 10%;
}


@media screen and (max-width: 698px) {
  .container1 {
    padding: 30px 20px;
	flex-direction: column;
  }

  .main-title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
   .premium-services .container1{
   flex-direction: column!important;
	}
}

/* Final services end */

/* New featured */
main#primary {
  background: #000;
}
.featured {
  background: #111;
  padding: 60px 0px 60px 0px;
  margin-top: -5px;
  background-position: top center;
  background-repeat: no-repeat;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.featured-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  align-content: center;
}

@media (min-width: 1024px) {
  .featured-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .featured-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-slider {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Luxury Car Card */
.luxury-car-card {
    border-radius: 10px;
    overflow: hidden;
    margin: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    background: #000;
}

.luxury-car-card:hover {
    transform: scale(1.02);
}

.car-card-image img {
    width: 100%;
    display: block;
}

.car-meta-top i {
    color: #2ecc71!important;
}

.car-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: radial-gradient(circle at top left, #24c25d 2%, #002e02 100%);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
}

.car-brand-name{
	font-family: 'wpgtr-luxury', serif;
}


/* Car Image */
.car-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.car-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Car Content */
.car-card-content {
  padding: 20px;
  text-align: center;
}

.car-card-title {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #eee;
  margin-top: 0 !important;
  margin-bottom: 10px;
}

.car-card-description {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

/* Car Meta */
.car-card-meta {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: #bbb;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff !important;
}

.meta-item i {
  font-size: 16px;
  color: #f1c40f;
}

/* WhatsApp Button */
.car-card-cta {
  margin-top: 15px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #000;
  padding: 10px 18px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  max-width: -webkit-fill-available;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1eb44c;
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 18px;
}

/* Services Section */
.services {
  padding: 100px 0;
  position: relative;
}

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

.service-item {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  background-color: #6f6f6f;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item__icon {
  font-size: 3rem;
  color: #000;
  margin-bottom: 1rem;
}

.service-item__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--dark-bg);
  color: #fff;
  position: relative;
}

.testimonials .section-title {
  color: #fff;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.testimonial-item {
  flex: 0 0 calc(50% - 15px);
  scroll-snap-align: start;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.testimonial-item__content {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-item__author {
  display: flex;
  align-items: center;
}

.testimonial-item__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-item__name {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-item__position {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background-image: linear-gradient(rgb(0 0 0), rgba(0, 0, 0, 0.7)),
    url(https://umjourneys.com/wp-content/uploads/2024/09/Example-Background-Image.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.cta__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .featured-vehicle {
    flex: 0 0 calc(100% - 20px);
  }

  .testimonial-item {
    flex: 0 0 calc(100% - 30px);
  }
  .featured {
    padding: 60px 0px 40px 0px !important;
  }
}


/* Responsive design */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
  }

  .main-navigation {
    margin-top: 20px;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: center;
  }

  .main-navigation li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .main-navigation ul {
    display: none;
  }

  .main-navigation.toggled ul {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Services page styles */
#services {
  padding: 60px 0;
  background: #000;
  position: relative;
  text-align: center;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
}

.car-filter {
    margin-bottom: 30px;
    text-align: center;
	overflow: hidden;
}

@media screen and (max-width: 768px){
	.car-filter ul#car-filter-list{
		gap: 10px!important;
	}
}
.car-filter ul#car-filter-list {
    list-style: none;
    display: inline-flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.car-filter ul#car-filter-list li {
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    color: #777;
    transition: color 0.3s ease;
}

.car-filter ul#car-filter-list li:hover {
    color: #aaa;
}

.car-filter ul#car-filter-list li.active {
    color: #2ecc71; /* highlight color */
    font-weight: 500;
}



/* Blog post grid */
.site-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 10px;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pagination {
  margin-top: 2rem;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 0.25rem;
  background-color: #f3f4f6;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background-color: #007bff;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Card CSS */

/* Base Container & Section */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}

/* Premium Card */
.card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-width: 300px;
  flex: 1;
}
.card:hover {
  transform: translateY(-5px);
}

/* Card Image */
.card__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Card Content */
.card__content {
  padding: 20px;
}
.card__title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}
.card__description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
}

/* Price & Meta Details */
.card__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card__price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e74c3c;
}
.price-label {
  font-size: 0.9rem;
  color: #888;
  display: block;
}
.card__meta {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.meta-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}
.meta-item i {
  margin-right: 5px;
  font-size: 1.1rem;
}

/* WhatsApp CTA Button */
.card__cta {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card {
    margin-bottom: 30px;
  }
}

/* test */

/* view all services button */
a.luxury-services-button {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'wpgtr-luxury', serif;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
   text-decoration-color: var(--royal-green);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;  color: #fff;
  position: relative;
  z-index: 1;
}

/*
a.luxury-services-button:after {
    position: absolute;
    content: '';
    width: 80%;
    background: var(--royal-green);
    height: 2px;
    position-area: center;
    top: 100%;
}

*/




/* Featured before css */
h2.section-title::before:nth-child(1) {
  display: none !important;
}


h2.section-title, .faq-title, section.testimonial.dark h2 {
    background: linear-gradient(88deg, #23a443 24.82%, #154D29 101.93%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.fw-btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent;
}

.fw-btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  margin: -.5em 0 0 -.5em;
  border: .15em solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: fw-spin 1s linear infinite;
}

@keyframes fw-spin {
  to { transform: rotate(360deg); }
}

.fw-btn-spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: fw-spin 1s linear infinite;
  vertical-align: middle;
}
@keyframes fw-spin {
  to { transform: rotate(360deg); }
}