/*------------------------------------
  Typography & Base Styles
------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;600;700&display=swap');


/* Import Font Awesome (for icons) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  font-family: inherit;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  /* deep charcoal */
  color: #000;
  /* soft off-white for text contrast */
  line-height: 1.7;
  font-weight: 300;
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.text-center {
  text-align: center;
}

.lead {
  font-size: 1.125rem;
  color: #444;
}

/*------------------------------------
  Typography Elements
------------------------------------*/

.section-title,
.section-heading h2,
h1,
h2,
h3,
h4,
h5,
h6,
.heading-md {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  background: none !important;
}

.heading-xl {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 3rem;
}

h2,
.section-title,
.section-heading h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4,
.heading-md {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Fancy Section Title with Gold Underline */
.section-title h2,
.section-title.center {
  position: relative;
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.75rem;
  color: #000;
  margin-bottom: 2rem;
  background: none !important;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #d4af37;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}


.section-title,
.section-title.center,
.section-title h2 {
  text-align: center;
  margin: 0 auto 2rem;
}

/* Headings With Gold Underline */
.section-heading {
  font-family: 'DM Serif Display', serif !important;
  font-size: 2.75rem;
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d4af37;
  border-radius: 2px;
  margin: 0.5rem auto 0;
}

/*------------------------------------
  Navigation (Navbar)
------------------------------------*/

.navbar {
  background: white;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

/* LOGO */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: clamp(2rem, 4vw, 3rem);
  width: auto;
}

/* NAVIGATION WRAPPER */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 3rem;
}
/* Wrapper ensures logo stays within box */
.logo-wrapper {
  width: 120px;       /* desired box width */
  height: 50px;       /* desired box height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Actual image scaling */
.logo-icon {
  max-width: 100%;   /* never exceed wrapper width */
  max-height: 100%;  /* never exceed wrapper height */
  height: auto;      /* maintain aspect ratio */
  width: auto;       /* maintain aspect ratio */
  display: block;
}

/* NAV LISTS */
.main-nav,
.auth-nav {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav {
  flex: 1;
  justify-content: center;
  gap: 2rem;
}

.auth-nav {
  flex-shrink: 0;
  justify-content: flex-end;
  gap: 1.5rem;
}

/* NAV LINKS */
.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* CONTACT BUTTON */
.contact-link {
  background: #d4af37;
  color: #0d0d0d;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-link:hover {
  background: #bfa128 !important;
  color: #fff !important;
}

/* AUTH */
.auth-item {
  font-weight: 400;
  text-transform: uppercase;
  color: #333;
}

.logout-button {
  background: transparent;
  border: none;
  color: #333;
  text-transform: uppercase;
  cursor: pointer;}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 180px;
  border-radius: 4px;
  padding: 0.5rem 0;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 0.5rem 1rem;
  color: #333;
  display: block;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000; /* Ensure it's visible */
  z-index: 1001; /* Above nav */
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    z-index: 999;
    display: none;
  }

  .nav-wrapper.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 0.5rem 1.5rem;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    display: none;
    padding: 0;
    margin: 0;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 1rem;
    background: none;
    width: 100%;
  }
}


.form-container {
  max-width: 500px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
}

.form-container h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #0d0d0d;
  font-weight: 600;
  text-transform: uppercase;
}

.form-container label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

.form-container input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 0.5rem;
}

.submit-btn {
  margin-top: 2rem;
  width: 100%;
  background: #d4af37;
  color: white;
  border: none;
  padding: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #bfa128;
}

/*------------------------------------
  Hero Section
------------------------------------*/

/* VIDEO HERO WRAPPER */
.video-hero {
  position: relative;
  overflow: hidden;
  height: 80vh;
  /* adjust for desired height */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* HERO CONTENT ON TOP */
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 1rem;
}

/* TEXT STYLES */
.hero-section .heading-xl {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-section .subheading {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #eee;
}

/* Universal Button Base */
.cta-button,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #d4af37, #bfa128);
  color: #111;
}


/* Hover Effect */
.cta-button:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #bfa128, #8a7315);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Specific Overrides */
.hero-section .btn-primary {
  font-weight: 600;
  background: linear-gradient(135deg, #bfa128, #a88f1e);
  color: #fff;
  padding: 1rem 2.25rem;
}

.hero-section .btn-primary:hover {
  background: linear-gradient(135deg, #a88f1e, #8a7315);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Legacy override for anchor buttons (safe fallback) */
a.btn-primary,
a.btn-secondary {
  border-radius: 40px;
  text-decoration: none;
}

/*------------------------------------ 
  Circle Grid Layout
------------------------------------*/
.services-grid {
  display: flex;
  flex-wrap: wrap;
  background: white;
  gap: 1rem 1.75rem;
  /* horizontal gap */
  padding: 2rem 0;
  justify-content: center;
  max-width: none;
  margin: 0 auto;
  border-radius: 12px;
}

.hex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  margin-bottom: 3rem;
}

.service-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* perfect circle */
  background: black;
  /* black circle background */
  border-radius: 50%;
  /* make it circular */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-align: center;
  padding: 1rem;
  /* add some padding */
  box-sizing: border-box;
  /* include padding in size */
  color: white;
  /* white text for contrast */
}


.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Section wrapper for spacing */
.services-wrapper {
  padding: 4rem 1rem;
  /* top/bottom spacing for neatness */
  background-color: white;
  /* subtle light background if desired */
  text-align: center;
}

/* Section heading styling */
.section-heading h2 {
  font-size: 2.5rem;
  font-family: 'Inter', sans-serif !important;
  color: #000;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  font-family: 'Inter', sans-serif !important;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.feature-image img,
.service-card img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image img:hover,
.service-card img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* center horizontally */
  justify-content: center;
  /* center vertically */
  padding: 0.5rem 1rem;
  /* balanced padding */
  text-align: center;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.card-content h3 {
  color: #f5f5f5;
  font-size: 1.2rem;
  margin: 0.25rem 0;
}

.card-content p {
  color: #f5f5f5;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}


.learn-link {
  color: #d4af37;
  /* gold for Learn More link */
  text-decoration: none;
}

.learn-link:hover {
  color: #bfa128;
  /* darker gold on hover */
  text-decoration: underline;
}


.card-icon {
  color: #d4af37;
  /* icon color to Gold */
  font-size: 1.75rem;
  top: 1rem;
  right: 1rem;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.card-icon {
  animation: float 3s ease-in-out infinite;
}

.learn-link:hover {
  color: #d4af37;
  text-decoration: underline;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 50% 50% 0 0;
  /* rounded top edges */
  object-fit: cover;
  /* ensure no distortion */
  max-height: 50%;
  /* so image doesn't take too much vertical space */
}


@media (max-width: 768px) {
  .services-grid {
    flex-wrap: wrap;
    /* allow wrapping */
    flex-direction: column;
    /* stack vertically */
    align-items: center;
    /* center the circles */
    max-width: 100%;
    /* full width on small */
  }

  .hex-container {
    width: 85vw;
    /* slightly smaller */
    max-width: 300px;
    /* reduced max width */
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 0.5rem;
    /* reduced padding */
    font-size: 0.85rem;
  }

  .service-card img {
    max-height: 35%;
    /* shrink image height */
  }

  .card-content h3 {
    font-size: 0.85rem;
  }

  .card-content p {
    font-size: 0.65rem;
  }

  .card-icon {
    font-size: 1.5rem;
  }

  .learn-link {
    font-size: 0.7rem;
  }
}

/*------------------------------------
  Location Split: Forma Style
------------------------------------*/
.location-split-forma {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 6rem 2rem;
  background-color: white;
}

.location-box {
  flex: 1 1 40%;
  max-width: 400px;
  background-color: white;
  /* Black background */
  padding: 3rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  /* All text inside becomes white */
}

.location-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.location-box .logo-icon {
  width: 120px;
  /* 100–150px depending on visual balance */
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.95;
}


.location-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: black;
  /* White heading */
}

.location-box p {
  font-size: 1.1rem;
  color: black;
  /* Slightly off-white for contrast */
  margin-bottom: 1.5rem;
}

.location-box a.btn-primary {
  background-color: #d4af37;
  color: black;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.location-box a.btn-primary:hover {
  background-color: #d4af37;
}

.location-image {
  flex: 1 1 50%;
  max-width: 600px;
}

.location-image img {
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.location-image img,
.feature-image img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-image img:hover,
.feature-image:hover img {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2);
}


/* Responsive stacking on small screens */
@media (max-width: 768px) {
  .location-split-forma {
    flex-direction: column;
    text-align: center;
  }

  .location-image,
  .location-box {
    max-width: 100%;
  }
}

/*------------------------------------
  How it Works Section
------------------------------------*/
.steps-flow-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.flow-step {
  max-width: 280px;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.icon-circle {
  background-color: #bfa128;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(191, 161, 40, 0.3);
}

.flow-arrow {
  font-size: 32px;
  color: #bfa128;
  align-self: center;
  position: relative;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive: stack steps on mobile */
@media (max-width: 768px) {
  .steps-flow-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* Glowing icon on hover */
.flow-step:hover .icon-circle {
  box-shadow: 0 0 12px rgba(191, 161, 40, 0.6), 0 0 24px rgba(191, 161, 40, 0.4);
  transition: box-shadow 0.4s ease;
}

/* Glowing arrows */
.flow-arrow i {
  transition: all 0.4s ease;
  animation: arrowPulse 2s infinite ease-in-out;
}

@keyframes arrowPulse {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(191, 161, 40, 0.5);
  }

  50% {
    text-shadow: 0 0 16px rgba(191, 161, 40, 0.9);
  }
}

.flow-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  display: none;
  left: -20px;
  right: -20px;
  height: 2px;
  background-image: repeating-linear-gradient(to right,
      #bfa128,
      #bfa128 4px,
      transparent 4px,
      transparent 8px);
  z-index: -1;
  transform: translateY(-50%);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.icon-circle {
  animation: float 3s ease-in-out infinite;
}

.flow-step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 36px rgba(191, 161, 40, 0.2);
}


.btn-primary {
  background-color: #bfa128;
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(191, 161, 40, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #a88f1a;
  box-shadow: 0 10px 30px rgba(191, 161, 40, 0.5);
}


/*------------------------------------
  Why Choose Us Section
------------------------------------*/
.why-choose-us {
  padding: 80px 20px;
  background-color: none;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.feature-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 8px 32px rgba(0, 0, 0, 0.2);
}


.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-text h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background-color: #bfa128;
  color: #111;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #bfa128;
  color: #ffffff;
}

/*------------------------------------
  Testimonials
------------------------------------*/
.testimonial-section {
  background: #111;
  padding: 4rem 1rem;
}

.testimonial {
  font-style: italic;
  padding: 1.5rem;
  border-left: 4px solid #d4af37;
  background-color: #1a1a1a;
  color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Make section titles white in dark sections */
.testimonial-section .section-title h2,
.testimonial-section .section-title.center,
.testimonial-section h2,
.testimonial-section .heading-md,
.cta-banner .section-title h2,
.cta-banner .section-title.center,
.cta-banner h2,
.cta-banner .heading-md {
  color: #fff;
}

.testimonial-section .section-title h2::after,
.cta-banner .section-title h2::after {
  background: #d4af37;
}

/*------------------------------------
  CTA Banner 
------------------------------------*/
.enhanced-cta {
  padding: 6rem 1rem;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #000;
  text-shadow: none !important; /* Remove blur */
  font-family: 'Inter', sans-serif;
}

.enhanced-cta .section-title h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #000 !important;
  text-shadow: none !important;
  margin-bottom: 1rem;
}

.enhanced-cta .cta-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #000 !important;
  margin-bottom: 2rem;
}

.enhanced-cta .cta-perks li {
  list-style: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #000;
}

.enhanced-cta a.btn-primary {
  background: #bfa128;
  color: #fff;
  border-radius: 40px;
  text-transform: uppercase;
}


/*------------------------------------
 Legal Pages
------------------------------------*/
/* Legal Pages */
.legal-page {
  background-color: #ffffff; /* white background */
  color: #0d0d0d; /* dark text for readability */
  padding: 4rem 2rem;
  border-radius: 8px; /* optional for nicer look */
}

/*------------------------------------
  Cookies Pop Up
------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d4af37;
  color: #000;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  z-index: 9999;

  /* start hidden & off-screen for a smooth slide-in */
  transform: translateY(100%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

/* when we decide to show it */
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

/* hard-hide when not needed */
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner a {
  color: #000;
  text-decoration: underline;
}

.cookie-banner .btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}


/*------------------------------------
  Footer
------------------------------------*/

/* Entire Footer Background */
.premium-footer {
  background-color: #000;
  /* One seamless black background */
  color: #ccc;
  padding-top: 4rem;
  /* add some padding */
}

/* Grid Layout */
.premium-footer .footer-container {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.2fr;
  gap: 3rem;
  padding: 1rem;
}


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

  .premium-footer .contact-form input,
  .premium-footer .contact-form textarea,
  .premium-footer .contact-form select {
    width: 100%;
  }
}

/* Headings White */
.premium-footer h3,
.premium-footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

/* Phone & Email gold */
.footer-info a[href^="tel"],
.footer-info a[href^="mailto"],
.footer-info i.fa-phone-alt,
.footer-info i.fa-envelope {
  color: #d4af37;
  font-weight: bold;
}

/* Contact Form Styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form button.cta-button {
  background-color: #d4af37;
  color: #111;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button.cta-button:hover {
  background-color: #b48a2c;
}

/* Social Icons - No gap from above */
#footer-bottom {
  padding: 0.5rem 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #000;
  color: #888;
  text-align: center;
}

/* Push icons flush to bottom visually */
.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Social Icons Styling */
.social-icons {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons li {
  position: relative;
  display: inline-block;
}

.social-icons a {
  position: relative;
  color: #d4af37;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.75;
}

/* Footer Info Link Styling */
#footer-info a {
  color: #d4af37;
  text-decoration: none;
}

/* Make location icon gold */
.gold-icon i.fa-map-marker-alt {
  color: #d4af37;
}

/* Improve spacing in contact info */
.footer-info .icon {
  margin-right: 0.5rem;
}

/* Form Field Hover Effects */
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  background-color: #f7f7f7;
  outline: 2px solid #d4af37;
  transition: all 0.2s ease;
}

/* Optional: Focus effect for accessibility */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid #d4af37;
  background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-footer {
    padding: 2rem 1rem;
  }

  .premium-footer .footer-container {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 2rem;
  }

  .premium-footer .contact-form input,
  .premium-footer .contact-form textarea,
  .premium-footer .contact-form select {
    width: 100%;
  }

  #footer-bottom {
    padding: 1.5rem 1rem 2rem;
  }
  @media (max-width: 768px) {
  .premium-footer .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-subscribe {
    order: 3;
    margin-top: 2rem;
  }
}
}
.footer-subscribe {
  background-color: #000; /* Match the full black background */
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.subscribe-subtitle {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 0.95rem;
}


.footer-subscribe .subscribe-form {
  max-width: 500px;
  margin: 1rem auto 0;
}

.subscribe-box input[type="email"] {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 6px;
  background: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}


.subscribe-box button.cta-button {
  background-color: #d4af37;
  color: #111;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-box button.cta-button:hover {
  background-color: #b48a2c;
}


.subscribe-box button.cta-button:hover {
  background-color: #b9972f;
}

.success-message {
  margin-top: 1rem;
  color: #d4af37;
  font-weight: bold;
}

.subscribe-form input[type="email"] {
  display: block !important;
}

.subscribe-box input::placeholder {
  color: #fff;
  opacity: 0.7; /* optional: slightly dim for subtlety */
}

.popup-messages {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 90%;
  width: 500px;
}

.popup-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.4s ease;
}

.popup-message.success {
  background-color: #111;
  color: #d4af37;
  border-left: 6px solid #d4af37;
}

.popup-message.error {
  background-color: #2c0000;
  color: #ffb3b3;
  border-left: 6px solid #ff4d4d;
}

.popup-text {
  flex: 1;
  padding-right: 1rem;
}

.close-popup {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.brochure-buttons {
    display: flex;
    gap: 10px; /* Adjust gap as needed */
    flex-wrap: wrap; /* Optional: keeps buttons from overflowing on small screens */
}

/* Animation */
@keyframes slideDown {
  from {
    transform: translateY(-50%) translateX(-50%);
    opacity: 0;
  }
  to {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }
}

/*------------------------------------
  About Section
------------------------------------*/
.about-section {
  padding: 6rem 1rem;
  background: #111;
}

.about-section .lead {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #ccc;
}

/*------------------------------------
  Connection
------------------------------------*/
.connections-section {
  padding: 6rem 1rem;
  background: #0d0d0d;
}

.connections-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.connection-item {
  text-align: center;
  padding: 2rem;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  background: #111;
  color: #f5f5f5;
  transition: transform 0.3s, box-shadow 0.3s;
}

.connection-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.connection-icon {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

/*------------------------------------
  Buttons
------------------------------------*/
a.btn-primary {
  background-color: #d4af37;
  color: #0d0d0d;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

a.btn-primary:hover {
  background-color: #bfa128;
  color: #ffffff;
}
/*------------------------------------
  Other HTML templates 
------------------------------------*/
.private-hero-banner {
  position: relative;
  height: 80vh;
  min-height: 500px;
  width: 100%;
  background-image: url('/static/images/office-wide.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.private-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.private-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}

.private-heading-xl {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn-private-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #d4af37, #bfa128);
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-private-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #bfa128, #8a7315);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .private-heading-xl {
    font-size: 2rem;
  }
}

/* Intro Text - FIXED: now targets .subheading (matches HTML) */
.private-intro-section .subheading {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #111; /* dark color for readability */
}

/* Image Gallery */
.private-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 1rem;
}

.private-image-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.grid-item.large {
  grid-row: span 2;
}

.grid-item.large-square {
  grid-row: span 2;
  grid-column: span 2;
}

.grid-item.medium {
  grid-row: span 1;
}

/* Feature Grid */
.private-feature-grid {
  padding: 4rem 1rem;
}

.private-feature-grid .grid-title h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #111;
}

.private-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.private-box {
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  width: 200px;
  height: 200px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.private-box:hover {
  border-color: #d4af37;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.4), 0 0 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px) scale(1.02);
}

.private-box .icon {
  font-size: 2.75rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.private-box p {
  font-size: 1.1rem;
  color: #111;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .private-box {
    width: 100%;
    max-width: 300px;
  }
}

/* Steps */
.private-how-it-works .flow-step {
  margin-bottom: 40px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: #111;
}

.step-desc {
  font-size: 1rem;
  color: #555;
  max-width: 300px;
  margin: 0 auto;
}

/* FIXED: Icon colors forced solid gold and no opacity */
.private-how-it-works .icon-circle {
  font-size: 2.5rem;
}

.cta-spacing {
  margin-top: 3rem; 
}

.cta-container {
  padding-bottom: 3rem;
}

.page-light-theme {
  position: relative;
  background: linear-gradient(135deg, #fffdfa 0%, #f9f6f1 100%);
}

/*------------------------------------
  Private Office Intro Section (Styled)
------------------------------------*/
.intro-wrapper {
  padding: 4rem 1rem;
}

.section-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #111;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

.intro-card {
  max-width: 320px;
  text-align: center;
  padding: 24px;
  background: #fff; /* pure white, no tint */
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 12px rgba(191, 161, 40, 0.4); /* subtle gold shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.intro-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 14px 36px rgba(191, 161, 40, 0.6); /* stronger gold glow on hover */
}

.intro-card::before {
  content: none; /* removed the gold gradient background */
}

.intro-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.intro-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive layout */
@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Add glowing animation */
.intro-card:hover::before {
  box-shadow: 0 0 12px rgba(191, 161, 40, 0.6), 0 0 24px rgba(191, 161, 40, 0.4);
  transition: box-shadow 0.4s ease;
}

/* Optional: matching CTA button if needed */
.btn-primary {
  background-color: #bfa128;
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(191, 161, 40, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #a88f1a;
  box-shadow: 0 10px 30px rgba(191, 161, 40, 0.5);
}

.dark-bg {
  background-color: #000;
}

.dark-bg h2 {
  color: white;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.pricing-table thead {
  background-color: #bfa128;
  color: #fff;
  font-size: 1.1rem;
}

.pricing-table th, .pricing-table td {
  padding: 1rem 0.75rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #111;
}

.pricing-table td:first-child {
  font-weight: 600;
  text-align: left;
}

.pricing-table tbody tr:hover {
  background: rgba(191, 161, 40, 0.05);
}

.pricing-table .icon-check {
  color: #bfa128;
  font-size: 1.2rem;
}

/* Make table captions bold for the packages */
.pricing-table th .header-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-table th .package-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-table th .package-price {
  font-size: 0.9rem;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .pricing-table th, .pricing-table td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
}

/* About Gallery + Text */
.gallery-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Gold glow text box */
.refined-box {
  background-color: white;
  border: 2px solid #bfa128;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.refined-box h2 {
  color: #111;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.refined-box p {
  color: #333;
  margin-bottom: 1rem;
}


/*------------------------------------
  FAQ
------------------------------------*/
.faq-question {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem;
  text-align: left;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1rem;
  background-color: black;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem;
  color: white;
}

.value-card {
  background: rgba(255,255,255,0.95);
  padding:2rem;
  border-radius:16px;
  text-align:center;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:box-shadow 0.3s ease;
}
.value-card:hover { box-shadow:0 0 16px rgba(191,161,40,0.4),0 0 24px rgba(0,0,0,0.1); }
.value-icon {
  font-size:2.5rem;
  color:#bfa128;
  margin-bottom:1rem;
}

.btn-small {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #d4af37, #bfa128);
  color: #111;
}

.btn-small:hover {
  background: #bfa128 !important;
  color: #fff !important;
}

/*------------------------------------
  Connectivity
------------------------------------*/
.connectivity-intro-section {
  padding: 4rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.connectivity-content .large-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #000;
  margin-top: 1rem;
}

/* HERO TEXT CARD WITH GOLD GLOW HOVER EFFECT */
.hero-text-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05), 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 1;
  max-width: 600px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.hero-text-card:hover {
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.15);
  transform: translateY(-4px);
  z-index: 2;
}


.hero-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #000;
}

.hero-subtext.highlight {
  font-weight: 500;
  color: #000;
}

.hero-content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}

/* IMAGE GALLERY STYLING LIKE YOUR PRIVATE GALLERY */
.hero-image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
  flex: 1;
  max-width: 700px;
}

.grid-item {
  overflow: hidden;
  border-radius: 8px;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item img:hover {
  transform: scale(1.02);
}

/* Custom sizes (feel free to adjust) */
.grid-item.large {
  grid-column: span 2;
}

.grid-item.medium {
  grid-column: span 1;
}

.grid-item.large-square {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .hero-content-grid {
    flex-direction: column;
  }

  .hero-image-gallery-grid {
    grid-template-columns: 1fr;
  }

  .grid-item.large,
  .grid-item.large-square {
    grid-column: span 1;
  }
}

/*------------------------------------
 Blog
------------------------------------*/
.blog-post-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2rem;
}

.blog-post-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.blog-post-card:hover {
  box-shadow: 0 4px 25px rgba(218, 165, 32, 0.4); /* subtle gold glow */
}

.post-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.post-snippet {
  color: #555;
}

.btn-text {
  color: #DAA520;
  font-weight: 500;
  text-decoration: none;
}

.blog-featured-image img,
.event-image img {
  max-width: 100%;
  height: auto;
}

.post-body, .event-content {
  line-height: 1.7;
  font-size: 1.1rem;
  color: #000;
}

/* Pricing Box ul items */
.pricing-box ul li {
  color: #000; 
}

.pricing-box ul {
  list-style: none;           /* Removes bullet points */
  padding: 0;                 /* Removes left indentation */
  text-align: center;         /* Centers all list text */
}

.pricing-box ul li {
  color: #000;                /* Ensures text is visible */
  margin: 4px 0;              /* Optional: adds spacing between list items */
}

/* Icon alignment inside box */
.private-box.pricing-box .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/* For About/Location */
.fancy-hover-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  will-change: transform;
  position: relative;
  border: 2px solid transparent;
  color: #000; /* Make text black */
}

.fancy-hover-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  border-color: #d4af37; /* Gold border */
}

/* Paragraph text color inside */
.fancy-hover-box p {
  color: #000;
}

/* Optional: matching title spacing */
.fancy-hover-box .section-title {
  margin-bottom: 1.5rem;
}
/* Location font styles*/
.location-text {
  color: #000; /* Ensure black text */
}

.location-text p {
  color: #000;
}

/* TEXT CARD: Consistent sizing and spacing */
.connections-hero {
  padding: 4rem 0;
}

.hero-text-card {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

/* Fancy hover card */
.fancy-hover-box {
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
}

.fancy-hover-box:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

/* Horizontal Gallery Container */
.horizontal-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Individual Image Blocks */
.gallery-item {
  flex: 1 1 200px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Optional: Size variations for visual interest */
.gallery-item.wide {
  flex: 2 1 400px;
  aspect-ratio: 16 / 9;
}

.gallery-item.tall {
  aspect-ratio: 3 / 4;
}

.gallery-item.medium {
  flex: 1.5 1 250px;
  aspect-ratio: 4 / 3;
}

.black-bg-wrapper {
  background-color: #000;
  color: #fff;
  padding: 4rem 0;
  width: 100%;
}
/* Testimonial Section for Connections PAge */
.black-bg-wrapper .section-heading,
.black-bg-wrapper .testimonial,
.black-bg-wrapper strong,
.black-bg-wrapper p {
  color: #fff;
}

.black-bg-wrapper .testimonial {
  background-color: transparent;
  border: none;
}

/* Force full black background on testimonial section */
.full-width-black-bg {
  background-color: #000;
  color: #fff;
  padding: 4rem 0;
  width: 100%;
}

/* Ensure all text is white inside testimonial section */
.full-width-black-bg .section-heading,
.full-width-black-bg p,
.full-width-black-bg strong {
  color: #fff;
}

/* Keep it centered inside a max-width container */
.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* Google Maps  */
.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Event/Blog Styling */
.fancy-hover-box {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fancy-hover-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.event-card, .blog-post-card, .post-detail-card {
  text-align: left;
}

.blog-post-grid, .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Apply to content generated via CKEditor */
.post-body p,
.event-description p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #000;
}

/* Make titles bold */
.section-heading,
.post-title,
.event-title {
  font-weight: bold;
}

/* Optional: Add consistent font family */
.post-body,
.event-description {
  font-family: 'Helvetica Neue', sans-serif;
}

.section-heading:hover {
  color: #d4af37;
  cursor: default; /* Optional: shows it's not clickable */
}

.section-heading a {
  text-decoration: none;
  color: inherit;
}

.section-heading a:hover {
  color: #d4af37;
  text-decoration: none;
}

.btn-small, .btn-text {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 5px;
  background-color: #d4af37; /* gold */
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-small:hover, .btn-text:hover {
  background-color: #b7952f; /* slightly darker gold */
  color: #fff;
}


.post-title a {
  text-decoration: none;
  color: #212529;
  transition: color 0.3s;
}

.post-title a:hover {
  color: var(--primary-color, #d4af37);
}
/* Logged in Users */
.auth-links a,
.logout-button {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.auth-links a:hover,
.logout-button:hover {
  color: #d4af37;
  background: rgba(255, 255, 255, 0.05);
}

.logout-button {
  background: none;
  border: none;
  color: black;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.logout-button:hover {
  color: #d4af37;
  background: rgba(255, 255, 255, 0.05);
}

/*------------------------------------
  Enquiry Form 
------------------------------------*/
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form .mb-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1rem;
}

form label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

form input,
form select,
form textarea {
  width: 100% !important;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #bfa128;
  box-shadow: 0 0 5px rgba(191, 161, 40, 0.4);
}

