/* ============================================
   FOURCORTERS - Global Stylesheet
   WordPress to HubSpot Migration
   ============================================ */

/* HubSpot module wrapper - make transparent to layout */
.hs_cos_wrapper {
  display: contents;
}

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Primary Colors */
  --color-primary: #063F29;
  --color-primary-dark: #004128;
  --color-accent: #40B488;
  --color-accent-light: #4CC996;
  --color-accent-hover: #35966F;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-light-bg: #F5F5F5;
  --color-light-gray: #E8E8E8;
  --color-medium-gray: #999999;
  --color-dark-text: #333333;
  --color-darker-text: #080C0B;
  --color-black: #000000;

  /* Nav Overlay */
  --color-nav-overlay: rgba(33, 58, 36, 0.96);

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-darker-text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- Layout Containers ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--color-white);
}

.section-light {
  background-color: var(--color-light-bg);
}

/* ---- Flexbox & Grid Utilities ---- */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ---- Text Utilities ---- */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-medium-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(64, 180, 136, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

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

.btn-white:hover {
  background-color: var(--color-light-bg);
  transform: translateY(-2px);
}

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

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

/* ---- Header / Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
}

.site-header .container {
  max-width: var(--container-wide);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 65px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 15px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  transition: var(--transition-base);
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--color-accent);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--color-nav-overlay);
  border-radius: 0 0 6px 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-base);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-list > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Also support .dropdown-menu class used in templates */
.nav-list > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--color-nav-overlay);
  border-radius: 0 0 6px 6px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-base);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 25px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white);
  transition: var(--transition-base);
}

.dropdown-menu li a:hover {
  color: var(--color-accent);
  padding-left: 30px;
}

.dropdown li a {
  display: block;
  padding: 10px 25px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white);
  transition: var(--transition-base);
}

.dropdown li a:hover {
  color: var(--color-accent);
  padding-left: 30px;
}

/* Header CTA */
.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-base);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  margin: 0 8px;
}

/* ---- Cards ---- */
.card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.card p {
  font-size: 0.95rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
}

/* ---- Profile Cards (Analysts, Speakers, Marketers) ---- */
.profile-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  text-align: center;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.profile-card .profile-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.profile-card .profile-info {
  padding: 25px 20px;
}

.profile-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.profile-card .title {
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  margin-bottom: 8px;
}

.profile-card .firm {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Testimonials ---- */
.testimonial {
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  color: var(--color-white);
}

.testimonial blockquote {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial .author {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
}

.testimonial .author-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 6px;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(64, 180, 136, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---- Logo Marquee / Carousel ---- */
.logo-marquee {
  overflow: hidden;
  padding: 30px 0;
  background-color: var(--color-light-bg);
}

.logo-marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
}

.logo-marquee-track img {
  height: 45px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-base);
}

.logo-marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Accordion ---- */
.accordion-item {
  border-bottom: 1px solid var(--color-light-gray);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-base);
}

.accordion-header:hover {
  color: var(--color-accent);
}

.accordion-header .icon {
  font-size: 1.5rem;
  transition: var(--transition-base);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-body p {
  padding-bottom: 20px;
  color: var(--color-medium-gray);
}

/* ---- Footer ---- */
.site-footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo img {
  height: 45px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
  color: var(--color-accent);
}

/* ---- Swiper/Carousel Override ---- */
.swiper-pagination-bullet {
  background: var(--color-accent);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-accent);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.8rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero { min-height: 70vh; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-nav-overlay);
    padding: 80px 30px 30px;
    z-index: 999;
  }

  .main-nav.active .nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .main-nav.active .nav-list > li > a {
    color: var(--color-white);
    font-size: 1.1rem;
    padding: 12px 0;
  }

  .main-nav.active .dropdown,
  .main-nav.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .container { padding: 0 15px; }
}

/* Solution Card Icons */
.solution-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.solution-card[data-sol="buyer-insights"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Crect x='6' y='28' width='8' height='14'/%3E%3Crect x='20' y='18' width='8' height='24'/%3E%3Crect x='34' y='8' width='8' height='34'/%3E%3Cline x1='6' y1='10' x2='42' y2='4'/%3E%3C/svg%3E");
}
.solution-card[data-sol="abm-solutions"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Ccircle cx='24' cy='24' r='20'/%3E%3Ccircle cx='24' cy='24' r='13'/%3E%3Ccircle cx='24' cy='24' r='6'/%3E%3C/svg%3E");
}
.solution-card[data-sol="content-creation"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Cpath d='M8 40l4-12L36 4l4 4L16 32z'/%3E%3Cpath d='M28 12l4 4'/%3E%3C/svg%3E");
}
.solution-card[data-sol="sales-enablement"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Ccircle cx='24' cy='18' r='10'/%3E%3Cpath d='M24 12v12M20 18h8'/%3E%3Cpath d='M12 34c0-6 5-10 12-10s12 4 12 10'/%3E%3C/svg%3E");
}
.solution-card[data-sol="demand-generation"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Cpath d='M10 20v8h6l10 10V10L16 20z'/%3E%3Cpath d='M32 16c3 2 3 14 0 16'/%3E%3Cpath d='M36 12c5 4 5 20 0 24'/%3E%3C/svg%3E");
}
.solution-card[data-sol="virtual-events"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Crect x='6' y='8' width='36' height='24' rx='2'/%3E%3Cpath d='M18 40h12M24 32v8'/%3E%3Ccircle cx='24' cy='20' r='4'/%3E%3C/svg%3E");
}
.solution-card[data-sol="in-person-events"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Ccircle cx='16' cy='14' r='6'/%3E%3Ccircle cx='32' cy='14' r='6'/%3E%3Cpath d='M4 36c0-7 5-12 12-12s12 5 12 12'/%3E%3Cpath d='M20 36c0-7 5-12 12-12s12 5 12 12'/%3E%3C/svg%3E");
}
.solution-card[data-sol="the-pyramid"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%2300b894' stroke-width='2'%3E%3Cpath d='M24 4L4 42h40z'/%3E%3Cpath d='M14 28h20'/%3E%3Cpath d='M10 36h28'/%3E%3C/svg%3E");
}
 

/* ===== GLOBAL NAV BAR (fc-nav) ===== */
.fc-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.fc-nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: #c8a96e;
  color: #063f29;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.fc-nav-cta:hover {
  background: #063f29;
  color: #ffffff;
  transform: scale(1.05);
}
.fc-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.fc-nav-links a {
  position: relative;
  color: #063f29;
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.fc-nav-links a:hover {
  color: #c8a96e;
}
.fc-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c8a96e;
  transition: width 0.3s;
}
.fc-nav-links a:hover::after {
  width: 100%;
}
/* Dropdown menu styles */
.fc-nav-dropdown {
  position: relative;
}
.fc-nav-link {
  position: relative;
  color: #063f29;
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 0;
  display: inline-block;
}
.fc-nav-link:hover {
  color: #c8a96e;
}
.fc-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top: 3px solid #c8a96e;
  padding: 8px 0;
  z-index: 10000;
}
.fc-nav-dropdown:hover .fc-nav-dropdown-menu {
  display: block;
}
.fc-nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #063f29;
  font-family: Montserrat, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.fc-nav-dropdown-menu a:hover {
  background: #f5f0e8;
  color: #c8a96e;
}
.fc-nav-dropdown-menu a::after {
  display: none;
}
.fc-nav-logo img {
  height: 53px;
  transition: opacity 0.3s;
}
.fc-nav-logo img:hover {
  opacity: 0.8;
}
body {
  padding-top: 64px;
}

/* ===== GLOBAL FOOTER (fc-footer) ===== */
.fc-footer {
  background: #fff;
  color: #333;
  padding: 60px 80px 0;
}
.fc-footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.fc-footer-logo img {
  max-width: 240px;
  margin-bottom: 8px;
}
.fc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.fc-footer-links a:hover {
  color: #c8a951;
}
.fc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fc-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fc-footer-contact-item svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #0a3d2e;
  stroke-width: 2;
  flex-shrink: 0;
}
.fc-footer-contact-item a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.fc-footer-contact-item a:hover {
  color: #c8a951;
}
.fc-footer-contact-item .linkedin-icon {
  width: 32px;
  height: 32px;
  fill: #0a3d2e;
  stroke: none;
}
.fc-footer-desc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
}
.fc-footer-desc p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
.fc-footer-desc a {
  color: #333;
  text-decoration: underline;
}
.fc-footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  color: #666;
  font-size: 13px;
}
.fc-footer-copyright .gold {
  color: #c8a951;
}
@media (max-width: 768px) {
  .fc-footer { padding: 40px 20px 0; }
  .fc-footer-main { grid-template-columns: 1fr; gap: 30px; }
}

/* ===== MOBILE NAV ===== */
.fc-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.fc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #063f29;
  margin: 5px 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .fc-nav { padding: 0 20px; }
  .fc-nav-toggle { display: block; }
  .fc-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .fc-nav-links.active { display: flex; }
  .fc-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
ww