/* --- RESET & VARIABLES --- */
:root {
  --bg-color: #fffaf6; /* neutral background */
  --text-main: #0f172a; /* dark slate */
  --text-light: #475569; /* slate-500 */
  --border: #e6e9ee;
  --spacing-section: 64px;
  --transition-speed: 0.12s;
  --card-bg: #ffffff;
  --primary: #649090; /* teal */
  --accent: #ff7a59; /* coral */
  --radius: 12px;
  --btn-radius: 8px;
  --font-sans: 'Proxima Nova','Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --base-size: 16px;
  
  /* --- BLUE & ORANGE GRADIENT COLORS --- */
  --gradient-blue: #82645E;
  --gradient-orange: #82645E;
  --gradient-blue-orange: linear-gradient(90deg, var(--gradient-blue) 60%, var(--gradient-orange));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.6vw, 18px);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: #111;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); }
h4 { font-size: clamp(1rem, 1.6vw, 1.1rem); }
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
ul {
  list-style: none;
}

/* --- UTILITIES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-padding {
  padding-top: var(--spacing-section);
  padding-bottom: 1px;
}
.text-center {
  text-align: center;
}

.btn,
.btn-nav {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient-blue-orange);
  color: #fffaf6 !important;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  border: none;
  border-radius: var(--btn-radius);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, opacity var(--transition-speed) ease;
}
.btn:hover,
.btn-nav:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(14, 20, 20, 0.08);
}

/* --- NAVIGATION --- */
nav {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 14px 0;
  transition: box-shadow 0.22s ease, background 0.22s ease;
}
nav.scrolled {
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Merriweather', var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
}

/* (theme toggle removed) */
/* (theme toggle removed) */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}
.nav-links a:hover {
  color: var(--text-main);
  transform: translateY(-2px);
}

/* Dropdown Menu */
/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color var(--transition-speed) ease;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.nav-dropdown-btn:hover {
  color: var(--text-main);
}

.dropdown-arrow {
  font-size: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 2px;
}

.nav-dropdown-btn[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-btn[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-main);
  font-size: 0.85rem;
  text-transform: none;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background-color: #f8f9fa;
  padding-left: 24px;
  transform: none;
}

/* Mobile nav toggle */

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid transparent;
  color: var(--primary);
  font-size: 1.4rem;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: 3px solid var(--accent);
}

.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  right: 24px;
  top: 70px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  z-index: 999;
}

/* --- HERO SECTION --- */
.hero {
  /* Spacing */
  padding: 160px 0; /* More vertical space for the background to shine */
  text-align: center;

  /* Background Image setup */
  /* The linear-gradient adds a dark tint overlay so text is readable */
  background-image:
    linear-gradient(rgba(2,6,23,0.45), rgba(2,6,23,0.45)),
    url("image copy 8.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Optional: Creates a cool parallax scrolling effect */

  /* Text Colors */
  color: #ffffff;
}


.hero h1 {
  line-height: 1.05;
  margin-bottom: 24px;
  color: #ffffff; /* Force White text */
}

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9); /* Off-white for description */
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Specific Button Style for Hero (White Button) */
.hero-btn {
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.9);
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: calc(var(--btn-radius) + 2px);
  box-shadow: 0 10px 34px rgba(2,6,23,0.12);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* Remove the old image wrapper styles as they are no longer needed */
.hero-image-wrapper {
  display: none;
}

/* --- STORY (Accordion - WHITE TEXT OVER IMAGE) --- */
.story-gallery {
  display: flex;
  height: 400px;
  gap: 10px;
}
.story-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  transition: flex 0.4s ease;
  box-shadow: 0 8px 22px rgba(15,15,15,0.06);
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.4s ease;
}

.responsive-img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Text Overlay Styling */
.story-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff; /* White Text enforced */
  z-index: 2;
}
.story-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.story-content p {
  color: rgba(255, 255, 255, 0.9); /* Off-white for body */
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-top: 0;
}

.story-card:hover {
  flex: 3;
}
.story-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.4);
}
.story-card:hover .story-content p {
  max-height: 100px;
  opacity: 1;
  margin-top: 10px;
}

/* --- SERVICES (EXPANDABLE GRID) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  transition: all 0.5s ease;
}

.expand-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 26px rgba(12,12,12,0.04);
}

.card-summary {
  text-align: left;
}
.icon-box {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #e6e6e6;
  margin-bottom: 20px;
}
.expand-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.expand-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.read-more-btn {
  background: none;
  border: none;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}

.card-details {
  display: none;
  opacity: 0;
}

/* Expanded State */
.services-grid.expanding {
  display: block;
  height: auto;
  min-height: 600px;
}
.expand-card.active {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
  z-index: 10;
  padding: 0;
  border: none;
  background: #fff;
  animation: fadeIn 0.5s forwards;
}
.expand-card.hidden {
  display: none;
}
.expand-card.active .card-summary {
  display: none;
}
.expand-card.active .card-details {
  display: block;
  opacity: 1;
  width: 100%;
  height: 100%;
  padding: 40px;
  animation: slideUp 0.5s ease-in;
}

.back-btn {
  background: none;
  border: none;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.back-btn:hover {
  color: #111;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.detail-text h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.detail-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}
.detail-text ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  line-height: 1.8;
}
.lists-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lists-row h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  margin-top: 10px;
}
.detail-image {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- INDUSTRIES (Hover Reveal) --- */
.hover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.hover-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.hover-img-box {
  height: 200px;
  overflow: hidden;
}
.hover-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hover-info {
  padding: 25px;
  background: #fff;
}
.hover-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.hover-reveal-text {
  font-size: 0.9rem;
  color: #555;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hover-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hover-card:hover .hover-img-box img {
  transform: scale(1.1);
}
.hover-card:hover .hover-reveal-text {
  max-height: 100px;
  opacity: 1;
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* --- WHY CHOOSE US --- */
.why-us {
  /* background-color: #f4f4f4; */
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.feature-item {
  background: var(--card-bg);
  padding: 28px;
  border: 0.1rem solid #82645E;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 6px 18px rgba(12,12,12,0.03);
  border-radius: 10px;
}
.feature-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.28s ease;
  color: var(--text-light);
  font-size: 0.95rem;
}
.feature-item:hover {
  background: var(--gradient-blue-orange);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14,20,20,0.06);
}
.feature-item:hover h4 {
  color: #fff;
}
.feature-item:hover .feature-desc {
  max-height: 80px;
  opacity: 0.95;
  color: #ddd;
}

/* --- TEAM (No Images, Shadow Style) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px; /* Increased gap to accommodate shadows */
  margin-top: 40px;
}

.team-card {
  background: #fff;
  box-shadow: -2px 2px 4px 1px #bbaf97;
  padding: 40px 30px;
  height: 100%;

  /* Top Left Box Shadow */
  /* -8px (Left) -8px (Top) 0px (Blur) Color */

  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-info {
  padding: 0;
}
.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.team-info .role {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
}
.team-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.team-card:hover {
  transform: translate(4px, -4px); /* Moves card down-right slightly */
  /* border-color: var(--primary); */
  box-shadow: -2px 2px 4px 3px #bbaf97;

  /* Shadow turns primary and sharp */
  /* box-shadow: -8px -8px 0 var(--primary); */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .hero {
    background-attachment: scroll;
  }
}

/* Reduced-motion toggle class (used by JS) */
.reduced-motion * {
  animation: none !important;
  transition: none !important;
}

/* Smooth theme transition */
html { transition: background-color 0.18s ease, color 0.18s ease; }

/* --- APPROACH (WHITE TEXT OVER IMAGE) --- */
.approach-wrapper {
  display: flex;
  height: 450px;
  border-radius: 8px 8px 0 0; /* Connects to footer */
  overflow: hidden;
}
.approach-item {
  flex: 1;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: flex 0.6s ease;
  overflow: hidden;
}
.approach-item:hover {
  flex: 4;
}
.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.4s;
}
.approach-item:hover .bg-img {
  opacity: 1;
}

/* Text Overlay Styling */
.approach-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff; /* White Text */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
.approach-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.approach-content p {
  color: rgba(255, 255, 255, 0.85); /* Off-white */
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.approach-item:hover .approach-content p {
  max-height: 100px;
  opacity: 1;
  margin-top: 10px;
}

/* --- CONTACT FORM --- */
.contact-section {
  background-color: #f8fafb;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto 60px;
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--btn-radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-main);
  background-color: #fafbfc;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(100, 144, 144, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
}

.form-submit-btn {
  align-self: flex-start;
  margin-top: 10px;
  cursor: pointer;
  border: none;
  font-size: 12px;
}

.form-submit-btn:active {
  transform: translateY(-1px);
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--btn-radius);
  text-align: center;
  font-weight: 500;
  display: none;
  margin-top: 10px;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  display: block;
  animation: slideUp 0.4s ease;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  display: block;
  animation: slideUp 0.4s ease;
}

.contact-info-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-section h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.contact-info-section .contact-details {
  margin-bottom: 30px;
}

.contact-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--card-bg);
  color: var(--text-main);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.contact-details {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
}
.footer-cta {
  color: #fffaf6;
  background: var(--gradient-blue-orange);
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
}
.copyright {
  margin-top: 48px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --transition-speed: 0.08s;
  }
  
  .detail-content {
    grid-template-columns: 1fr;
  }
  .lists-row {
    grid-template-columns: 1fr;
  }
  .story-gallery,
  .approach-wrapper {
    flex-direction: column;
    height: auto;
  }
  .story-card,
  .approach-item {
    height: 150px;
  }
  .story-card:hover,
  .approach-item:hover {
    flex: none;
    height: 250px;
  }
  
  /* Mobile active states for automatic effects */
  .story-card.mobile-active {
    height: 250px;
  }
  
  .story-card.mobile-active img {
    transform: scale(1.05);
    filter: brightness(0.4);
  }
  
  .story-card.mobile-active .story-content p {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
  }
  
  .approach-item.mobile-active {
    height: 250px;
  }
  
  .approach-item.mobile-active .approach-content p {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
  }
  
  .feature-item.mobile-visible {
    background: var(--gradient-blue-orange);
    color: #fff;
    transform: translateY(-6px);
  }
  
  .feature-item.mobile-visible h4 {
    color: #fff;
  }
  
  .feature-item.mobile-visible .feature-desc {
    max-height: 80px;
    opacity: 0.95;
    color: #ddd;
  }
  
  .hover-card.mobile-visible .hover-reveal-text {
    max-height: 100px;
    opacity: 1;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
  }
  
  .hover-card.mobile-visible .hover-img-box img {
    transform: scale(1.1);
  }
  
  /* Reduce transitions on mobile for better performance */
  
  /* Reduce transitions on mobile for better performance */
  .btn, .btn-nav,
  .expand-card,
  .hover-card,
  .nav-links a {
    transition-duration: 0.15s !important;
  }
  
  .story-content p {
    transition-duration: 0.25s !important;
  }
  
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero {
    background-attachment: scroll; /* safer on mobile */
    padding: 60px 0;
  }

  .contact-form-wrapper,
  .contact-info-section {
    padding: 24px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Mobile dropdown styling */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    margin-left: 10px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown-btn[aria-expanded="true"] + .nav-dropdown-menu {
    max-height: 300px;
    padding: 8px 0;
  }

  .nav-dropdown-menu a {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}


/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
