/* css/style.css */
:root {
  --dark-bg: #121212;
  --dark-secondary: #1e1e1e;
  --gold-primary: #d4af37;
  --gold-secondary: #b8941f;
  --gold-highlight: #ffd700;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.header {
  background-color: var(--dark-secondary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  /* border: solid 1px yellow;  */
  position: relative;
  gap: 0.5em;
}

.logo-link {
  text-decoration: none;
}

.logo img {
  height: 90px;
}

.logo h1 {
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.logo span {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  position: relative;
  margin-left: 1.5rem;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: var(--gold-primary);
}

.dropdown-menu {
  position: absolute;
  background-color: var(--dark-secondary);
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  /* border: solid 1px yellow;  */
  display: flex;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
    url("images/homepage.jpg") no-repeat center center/cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 6rem 0;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  margin: 1em 0em;
}

.btn:hover {
  background-color: var(--gold-secondary);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gold-primary);
}

/* Practice Areas Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.practice-card {
  background-color: var(--dark-secondary);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 4px solid var(--gold-primary);
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.practice-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-img {
  height: 250px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.team-info .position {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
}

/* Testimonials */
.testimonials-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background-color: var(--dark-secondary);
  padding: 2rem;
  border-radius: 8px;
  margin: 0 1rem;
  text-align: center;
  border-top: 4px solid var(--gold-primary);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--gold-primary);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text::before {
  top: -1rem;
  left: -1rem;
}

.testimonial-text::after {
  bottom: -2rem;
  right: -1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gold-primary);
}

.testimonial-position {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer Styles */
.footer {
  background-color: var(--dark-secondary);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.footer-section h3 {
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--gold-primary);
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

.footer-bottom a {
  text-decoration: none;
  color: var(--gold-secondary);
}

.footer-bottom a:hover {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-secondary);
    padding: 1rem;
  }

  .main-nav ul.active {
    display: flex;
  }

  .main-nav li {
    margin: 0.5rem 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-left: 1rem;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }
}

/* About Us Page Styles */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.mv-card {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold-primary);
}

.mv-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  margin: 1.5rem 0;
}

.values-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: "•";
  color: var(--gold-primary);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.3rem;
}

.about-image {
  /* border: solid 1px yellow;  */
  max-height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.about-image img {
  width: 80%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  /* border: solid 1px lightgreen; */
}
.about-content {
  /* border: solid 1px yellow; */
  max-width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.about-text {
  max-width: 85%;
  /* border: solid 1px lightblue; */
}

.image-holder {
  background-color: #2c2c2c;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.image-holder img {
  width: 100%;
}

.image-placeholder {
  background-color: #2c2c2c;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background-color: var(--dark-secondary);
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gold-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 80px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.timeline-content {
  background-color: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.timeline-content h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

/* Our Practice Page Styles */
.services-tabs {
  margin-top: 2rem;
}

.tabs-header {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--gold-primary);
  margin-bottom: 2rem;
}

.tab-link {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.tab-link:hover {
  color: var(--gold-primary);
}

.tab-link.active {
  color: var(--gold-primary);
  border-bottom: 3px solid var(--gold-primary);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.approach-steps {
  display: grid;
  gap: 2rem;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.cta-container {
  text-align: center;
  padding: 3rem;
  background-color: var(--dark-secondary);
  border-radius: 8px;
}

.cta-container h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.cta-container p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Our Tools Page Styles */
.tools-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.tools-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tool-card {
  background-color: var(--dark-secondary);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.tool-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.tool-card ul {
  list-style: none;
  margin-top: 1rem;
}

.tool-card li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.tool-card li::before {
  content: "✓";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step {
  background-color: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-header .step-number {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
}

.step-header h3 {
  color: var(--gold-primary);
  margin: 0;
}

.case-example {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.case-example h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.case-example p {
  margin-bottom: 2rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.result-item {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
}

.result-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold-primary);
}

.result-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Our Team Page Styles */
.social-link a {
  color: var(--gold-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link a::before {
  content: "🐦";
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-item {
  background-color: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold-primary);
}

.expertise-item h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.exp-years {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.recognition-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.recognition-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.recognition-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.recognition-content h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.team-cta {
  text-align: center;
  padding: 2rem;
  background-color: var(--dark-secondary);
  border-radius: 8px;
}

.team-cta h3 {
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .tabs-header {
    flex-direction: column;
  }

  .tools-container {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .recognition-container {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-year {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Case Studies Page Styles */
.case-studies-grid {
  display: grid;
  gap: 2rem;
}

.case-study-card {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-image {
  height: 200px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.case-content {
  padding: 1.5rem;
}

.industry {
  display: inline-block;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.case-study-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.case-challenge,
.case-solution,
.case-services,
.case-results {
  margin-bottom: 1.5rem;
}

.case-study-card h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.case-study-card ul {
  list-style: none;
  margin-top: 0.5rem;
}

.case-study-card li {
  margin-bottom: 0.3rem;
  padding-left: 1.2rem;
  position: relative;
}

.case-study-card li::before {
  content: "•";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
}

.case-toggle {
  margin-top: 1rem;
  width: 100%;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sector-card {
  background-color: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.sector-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sector-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.sector-clients {
  margin-top: 1.5rem;
}

.sector-clients h4 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.sector-clients ul {
  list-style: none;
}

.sector-clients li {
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

/* Press Releases Page Styles */
.filters {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--gold-primary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
}

.featured-releases,
.all-releases {
  margin-bottom: 3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.releases-grid {
  display: grid;
  gap: 1.5rem;
}

.press-release-card {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.press-release-card.featured {
  border-left: 4px solid var(--gold-primary);
}

.press-release-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.release-category {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.release-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.press-release-card h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.release-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.read-more {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  background: none;
  border: 1px solid var(--gold-primary);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn.active,
.page-btn:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
}

.media-contact {
  text-align: center;
  padding: 2rem;
}

.media-contact h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.media-contact a {
  text-decoration: none;
  color: var(--gold-secondary);
}

.contact-info {
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Speeches & Presentations Page Styles */
.speeches-grid {
  display: grid;
  gap: 1.5rem;
}

.speech-card {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
}

.speech-type {
  display: inline-block;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.speech-card h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.speech-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.speech-description {
  margin-bottom: 1.5rem;
}

.speech-actions {
  display: flex;
  gap: 1rem;
}

.presentations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.presentation-card {
  background-color: var(--dark-bg);
  border-radius: 8px;
  overflow: hidden;
}

.presentation-image {
  height: 180px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.presentation-content {
  padding: 1.5rem;
}

.presentation-content h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.presentation-meta {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.speaking-request {
  text-align: center;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.topic-item {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: left;
}

.topic-item h4 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.topic-item ul {
  list-style: none;
}

.topic-item li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.topic-item li::before {
  content: "•";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
}

.request-cta {
  margin-top: 2rem;
}

/* Videos & Podcasts Page Styles */
.videos-grid,
.podcasts-grid {
  display: grid;
  gap: 2rem;
}

.video-card,
.podcast-card {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-thumbnail,
.podcast-thumbnail {
  height: 200px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--text-light);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.play-btn {
  position: absolute;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}

.play-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.video-content,
.podcast-content {
  padding: 1.5rem;
}

.video-type {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.video-card h3,
.podcast-card h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.video-meta,
.podcast-meta {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.podcast-series {
  color: var(--gold-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.podcast-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.subscribe-btn {
  background: none;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.channel-card {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.channel-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.channel-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* Photo Gallery Page Styles */
.gallery-tabs .tabs-header {
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filters {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
}

.gallery-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem;
  color: var(--text-light);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.gallery-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.featured-projects {
  display: grid;
  gap: 3rem;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.project-showcase.reverse {
  direction: rtl;
}

.project-showcase.reverse > * {
  direction: ltr;
}

.project-image {
  height: 300px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 8px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}

.project-details h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat {
  text-align: center;
  padding: 1rem;
  background-color: var(--dark-bg);
  border-radius: 8px;
}

.stat .number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold-primary);
}

.stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.photo-usage {
  text-align: center;
}

.usage-guidelines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.guideline {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
}

.guideline h4 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.media-contact {
  margin-top: 2rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
  .case-study-card {
    flex-direction: column;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .speech-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .speech-actions {
    flex-direction: column;
  }

  .presentations-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .video-card,
  .podcast-card {
    flex-direction: column;
  }

  .podcast-actions {
    flex-direction: column;
  }

  .channels-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }

  .project-stats {
    grid-template-columns: 1fr;
  }

  .usage-guidelines {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Page Styles */
.blog-filters {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.featured-blog-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  background-color: var(--dark-secondary);
  border-radius: 8px;
  overflow: hidden;
}

.featured-image {
  height: 300px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .category {
  display: inline-block;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-content h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.featured-content p {
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background-color: var(--dark-secondary);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-image {
  height: 200px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.blog-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content .category {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.blog-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.read-more {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
}

.newsletter-section {
  text-align: center;
  padding: 2rem;
}

.newsletter-section h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.newsletter-section p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.newsletter-form button {
  border-radius: 0 4px 4px 0;
}

.newsletter-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Single Post Page Styles */
.post-meta-large {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.post-meta-large .category {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.single-post-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.post-main {
  background-color: var(--dark-secondary);
  padding: 2rem;
  border-radius: 8px;
}

.post-main .featured-image {
  height: 400px;
  margin-bottom: 2rem;
}

.post-article {
  line-height: 1.8;
}

.post-article h2,
.post-article h3,
.post-article h4 {
  color: var(--gold-primary);
  margin: 2rem 0 1rem;
}

.post-article p {
  margin-bottom: 1.5rem;
}

.post-article ul,
.post-article ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-article li {
  margin-bottom: 0.5rem;
}

.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tags h4 {
  margin: 0;
  color: var(--text-light);
}

.post-share {
  margin: 2rem 0;
}

.post-share h4 {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.share-btn.twitter {
  background-color: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background-color: #0077b5;
  color: white;
}

.share-btn.facebook {
  background-color: #4267b2;
  color: white;
}

.share-btn.email {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
}

.author-bio {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--dark-bg);
  border-radius: 8px;
}

.author-image {
  width: 80px;
  height: 80px;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.author-info h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.author-info h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
}

.sidebar-widget h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 0.8rem;
}

.category-list a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.category-list a:hover {
  color: var(--gold-primary);
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post {
  display: flex;
  gap: 1rem;
}

.recent-image {
  width: 80px;
  height: 60px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  flex-shrink: 0;
  border-radius: 4px;
}

.recent-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.recent-content h4 {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.recent-content a {
  color: var(--text-light);
  text-decoration: none;
}

.recent-content a:hover {
  color: var(--gold-primary);
}

.recent-content .date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-newsletter input {
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.related-posts {
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.related-card {
  background-color: var(--dark-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-image {
  height: 180px;
  background-color: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.related-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.related-content {
  padding: 1.5rem;
}

.related-content .category {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.related-content h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.related-content h3 a {
  color: var(--text-light);
  text-decoration: none;
}

.related-content h3 a:hover {
  color: var(--gold-primary);
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--text-muted);
  margin: 0;
}

.contact-text a {
  color: var(--gold-primary);
  text-decoration: none;
}

.social-links h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.social-link.linkedin {
  background-color: #0077b5;
  color: white;
}

.social-link.twitter {
  background-color: #1da1f2;
  color: white;
}

.social-link.facebook {
  background-color: #4267b2;
  color: white;
}

.contact-form-container {
  background-color: var(--dark-secondary);
  padding: 2rem;
  border-radius: 8px;
}

.contact-form-container h2 {
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.form-message {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.form-message.success {
  background-color: rgba(46, 204, 113, 0.2);
  color: #27ae60;
  border: 1px solid #27ae60;
}

.form-message.error {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.map-section {
  text-align: center;
}

.map-section h2 {
  color: var(--gold-primary);
  margin-bottom: 2rem;
}

.map-container {
  margin-bottom: 2rem;
}

.map-placeholder {
  height: 400px;
  background-color: #2c2c2c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 8px;
}

.map-placeholder span {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  text-align: left;
}

.location-info h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.transport-options h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.transport-option {
  background-color: var(--dark-bg);
  padding: 1rem;
  border-radius: 8px;
}

.transport-option h4 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.faq-section {
  text-align: center;
}

.faq-section h2 {
  color: var(--gold-primary);
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.faq-item {
  background-color: var(--dark-secondary);
  padding: 1.5rem;
  border-radius: 8px;
}

.faq-item h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.faq-cta {
  margin-top: 2rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 1024px) {
  .single-post-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .featured-blog-post {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .post-meta-large {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    flex-direction: column;
  }
}

/* Active navigation link styles */
.main-nav li.active > a {
  color: var(--gold-primary) !important;
  position: relative;
}

.main-nav li.active > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
}

/* Dropdown active states */
.dropdown-menu li.active > a {
  color: var(--gold-primary) !important;
  background-color: rgba(212, 175, 55, 0.1);
}

/* Mobile menu active states */
@media (max-width: 768px) {
  .main-nav ul.active li.active > a {
    color: var(--gold-primary) !important;
  }

  .dropdown.active > a {
    color: var(--gold-primary) !important;
  }

  .dropdown-menu li.active > a {
    padding-left: 2rem;
    font-weight: 600;
  }
}

/* Submenu active states */
.dropdown-submenu.active > a {
  color: var(--gold-primary) !important;
}

/* Breadcrumb active state (if used elsewhere) */
.breadcrumb .active {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Breadcrumb styles */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-primary);
}

.breadcrumb .active {
  color: var(--gold-primary);
  font-weight: 500;
}

.hm-sec {
  /* border: solid 1px yellow;  */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sg-strategy {
  background: var(--dark-secondary);
  padding: 4rem 1rem;
  color: #fff;
}

.sg-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
}

.sg-strategy__title {
  text-align: center;
  margin-bottom: 3rem;
}

.sg-strategy__title h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.sg-strategy__title p {
  font-size: 1.1rem;
  opacity: 0.85;
}

.sg-strategy__cycle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sg-strategy__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sg-strategy__steps {
  display: grid;
  gap: 1.5rem;
}

.sg-strategy__step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.sg-strategy__step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.sg-strategy__number {
  display: inline-block;
  background: var(--accent, #f5c542);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.75rem;
}

.sg-strategy__step h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.sg-strategy__step p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.sg-strategy__description p {
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0.9;
}

.sg-strategy__features {
  display: grid;
  gap: 1.5rem;
}

.sg-strategy__feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sg-strategy__feature p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
  .sg-strategy__cycle {
    grid-template-columns: 1fr;
  }
}
