.elementor-33471 .elementor-element.elementor-element-4d9abcd{--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;}.elementor-33471 .elementor-element.elementor-element-4d9abcd.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-33471 .elementor-element.elementor-element-4d9abcd{--width:99.065%;}}/* Start custom CSS *//* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Color Variables */
:root {
  --accent-500: #10B981; /* Emerald green for accents */
  --accent-600: #059669; /* Darker emerald for CTAs */
  --accent-700: #047857; /* Even darker for links */
  --primary: #1D4ED8; /* Blue for primary buttons */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-700: #374151;
  --white: #FFFFFF;
  --black: #000000;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
}

/* Hero Section */
#hero-golf-sim {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.pp-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

#hero-golf-sim .relative {
  z-index: 10;
  max-width: 48rem;
  padding: 1.5rem;
  text-align: center;
}

#hero-golf-sim h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  #hero-golf-sim h1 {
    font-size: 3rem;
  }
}

#hero-golf-sim p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  #hero-golf-sim p {
    font-size: 1.25rem;
  }
}

.pp-btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary), #2563EB);
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -5px var(--shadow-lg);
}

/* Section Base */
.pp-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .pp-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Intro Section */
#intro {
  background-color: var(--white);
}

#intro p {
  color: var(--gray-700);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 48rem;
  margin: 0 auto;
}

/* Features Section */
#features {
  background-color: var(--gray-50);
}

#features h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

#features .grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  #features .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #features .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px var(--shadow-lg);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--gray-700);
}

/* How It Works */
#how-it-works {
  background-color: var(--white);
}

#how-it-works h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

#how-it-works ol {
  list-style-type: decimal;
  list-style-position: inside;
  space-y: 1.5rem;
  font-size: 1.125rem;
  max-width: 64rem;
  margin: 0 auto;
}

#how-it-works li strong {
  font-weight: 600;
}

/* Packages Section */
#packages {
  background-color: var(--gray-50);
}

#packages h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

#packages .grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  #packages .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 1px 3px var(--shadow);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 4px 6px -1px var(--shadow-lg);
  border-color: var(--accent-500);
}

.package-card.border-t-4 {
  border-top-width: 4px;
  border-top-color: var(--accent-500);
  box-shadow: 0 10px 15px -3px var(--shadow-lg);
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.package-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

.package-card p {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.package-card ul {
  list-style-type: disc;
  list-style-position: inside;
  space-y: 0.25rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.package-card ul li {
  color: var(--gray-700);
}

.package-card .font-medium {
  font-weight: 500;
  text-align: center;
  font-size: 1.125rem;
}

/* Ideal Events */
#ideal-events {
  background-color: var(--white);
}

#ideal-events h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

#ideal-events p {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

#ideal-events ul {
  display: grid;
  gap: 1rem;
  list-style-type: disc;
  list-style-position: inside;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  #ideal-events ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Why Choose Us */
#why-us {
  background-color: var(--gray-50);
}

#why-us h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

#why-us .md\:flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (max-width: 767px) {
  #why-us .md\:flex {
    flex-direction: column;
  }
}

#why-us .md\:w-1\/2 {
  width: 50%;
}

@media (max-width: 767px) {
  #why-us .md\:w-1\/2 {
    width: 100%;
  }
}

#why-us p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

#why-us strong {
  font-weight: 600;
}

#why-us img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px var(--shadow-lg);
  max-width: 100%;
  height: auto;
}

/* Requirements */
#requirements {
  background-color: var(--white);
}

#requirements h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

#requirements ul {
  list-style-type: disc;
  list-style-position: inside;
  space-y: 0.5rem;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

/* Gallery */
#gallery {
  background-color: var(--gray-50);
}

#gallery h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

#gallery .grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  #gallery .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #gallery .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#gallery img {
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px var(--shadow);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* Testimonials */
#testimonials {
  background-color: var(--white);
}

#testimonials h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

#testimonials .space-y-10 {
  space-y: 2.5rem;
}

.pp-quote {
  border-left: 4px solid var(--accent-500);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gray-700);
}

.pp-quote span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* FAQ */
#faq {
  background-color: var(--gray-50);
}

#faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

.pp-accordion {
  space-y: 1rem;
}

.pp-accordion-header {
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1rem;
  background-color: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.pp-accordion-header:hover {
  background-color: var(--gray-50);
}

.pp-accordion-body {
  display: none; /* Assume JS toggles this */
  padding: 1rem;
  border: 1px solid #E5E7EB;
  border-top: none;
  color: var(--gray-700);
  font-size: 1rem;
}

.pp-accordion-body p {
  margin: 0;
}

/* Note: For accordion functionality, JS would be needed to toggle display */

/* Service Area */
#service-area {
  background-color: var(--white);
}

#service-area h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

#service-area p {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

#service-area .grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  #service-area .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  #service-area .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pp-area-card {
  display: block;
  padding: 1rem;
  background-color: var(--gray-50);
  border-radius: 0.375rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent-700);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pp-area-card:hover {
  background-color: var(--accent-500);
  color: var(--white);
  transform: translateY(-2px);
}

/* CTA Banner */
#cta-banner {
  background-color: var(--accent-600);
  color: var(--white);
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  #cta-banner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

#cta-banner p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  #cta-banner p {
    font-size: 1.5rem;
  }
}

.pp-btn-light {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--white), #F3F4F6);
  color: var(--accent-600);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.25);
}

/* Related Links */
#related-links {
  background-color: var(--gray-100);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

#related-links p {
  font-size: 1.125rem;
  text-align: center;
}

#related-links a {
  text-decoration: underline;
  color: var(--accent-700);
  transition: color 0.3s ease;
}

#related-links a:hover {
  color: var(--accent-500);
}

/* Responsive Adjustments */
@media (min-width: 1024px) {
  .max-w-3xl {
    max-width: 48rem;
  }
  .max-w-4xl {
    max-width: 64rem;
  }
  .max-w-5xl {
    max-width: 80rem;
  }
  .max-w-6xl {
    max-width: 96rem;
  }
}

/* Add some animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pp-section {
  animation: fadeIn 1s ease-out;
}

/* For the hero */
#hero-golf-sim {
  animation: fadeIn 1.5s ease-out;
}/* End custom CSS */