/* ===== SHARED COMPONENTS ===== */

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(90deg, rgba(215, 56, 4, 0.15) 0%, rgba(255, 87, 34, 0.15) 100%);
  text-align: center;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: #F1F1F1;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-section .subtitle {
  font-size: 18px;
  color: #8D8D9F;
  margin-bottom: 40px;
}

/* Decorative background elements */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  background: rgba(215, 56, 4, 0.2);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-section::before {
  width: 300px;
  height: 300px;
  top: 20%;
  left: -100px;
}

.hero-section::after {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -150px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0B4A3A 0%, #1A5F4F 100%);
  border: 1px solid rgba(215, 56, 4, 0.2);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  margin: 80px auto;
  max-width: 800px;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #F1F1F1;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #8D8D9F;
  margin-bottom: 32px;
}

/* Buttons */
.btn-primary {
  background: #EB7300;
  color: #0D0C1E;
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: #EB7300;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #EB7300;
  border: none;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(215, 56, 4, 0.1);
}

/* Card Components */
.card-grid {
  display: grid;
  gap: 24px;
  margin: 60px 0;
}

.card-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-grid.four-col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Fixed width service cards */
.card-grid.service-grid {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  max-width: 1240px;
  margin: 60px auto;
}

.service-card {
  display: flex;
  width: 600px;
  height: 256px;
  padding: 41px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid rgba(141, 141, 159, 0.20);
  background: linear-gradient(90deg, rgba(141, 141, 159, 0.10) 0%, rgba(215, 56, 4, 0.10) 100%);
  transition: all 0.3s ease;
  flex-direction: column;
  text-align: left;
  margin: 0 auto;
}

.case-study-card {
  background: linear-gradient(135deg, #0B4A3A 0%, #1A5F4F 100%);
  border: 1px solid rgba(215, 56, 4, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover,
.case-study-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 56, 4, 0.4);
  box-shadow: 0 8px 32px rgba(215, 56, 4, 0.1);
}

.service-card .icon,
.case-study-card .icon {
  width: 48px;
  height: 48px;
  background: #EB7300;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3,
.case-study-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F1F1F1;
  margin-bottom: 12px;
}

.service-card p,
.case-study-card p {
  font-size: 14px;
  color: #8D8D9F;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin: 80px 0 60px 0;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #F1F1F1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #8D8D9F;
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.stat-card {
  text-align: center;
  padding: 24px;
  background: rgba(215, 56, 4, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(215, 56, 4, 0.2);
}

.stat-card .number {
  font-size: 36px;
  font-weight: 700;
  color: #EB7300;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 14px;
  color: #8D8D9F;
}

/* Icon Components */
.icon-circle {
  width: 60px;
  height: 60px;
  background: #EB7300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

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

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: #EB7300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #0D0C1E;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F1F1F1;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: #8D8D9F;
  line-height: 1.5;
}

/* About Page Specific Styles */
.about-profile-section {
  margin: 80px 0;
}

.profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.profile-card {
  background: linear-gradient(135deg, #0B4A3A 0%, #1A5F4F 100%);
  border: 1px solid rgba(215, 56, 4, 0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.profile-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EB7300 0%, #FF8C42 100%);
  border-radius: 50%;
}

.profile-name h3 {
  font-size: 24px;
  font-weight: 700;
  color: #F1F1F1;
  margin: 0;
}

.profile-bio {
  color: #8D8D9F;
  line-height: 1.6;
}

.profile-bio p {
  margin-bottom: 20px;
  font-size: 16px;
}

.profile-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  justify-content: center;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #EB7300;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #8D8D9F;
}

/* Ethos Grid */
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.ethos-card {
  background: linear-gradient(90deg, rgba(141, 141, 159, 0.10) 0%, rgba(215, 56, 4, 0.10) 100%);
  border: 1px solid rgba(141, 141, 159, 0.20);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.ethos-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 56, 4, 0.4);
  box-shadow: 0 8px 32px rgba(215, 56, 4, 0.1);
}

.ethos-icon {
  width: 60px;
  height: 60px;
  background: #EB7300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0D0C1E;
}

.ethos-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F1F1F1;
  margin-bottom: 16px;
}

.ethos-card p {
  font-size: 14px;
  color: #8D8D9F;
  line-height: 1.5;
}

/* Network Section */
.network-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}

.network-visual h3 {
  font-size: 28px;
  font-weight: 700;
  color: #F1F1F1;
  margin-bottom: 20px;
}

.network-description p {
  font-size: 16px;
  color: #8D8D9F;
  line-height: 1.6;
  margin-bottom: 20px;
}

.network-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.network-stat .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #EB7300;
  margin-bottom: 4px;
}

.network-stat .stat-label {
  font-size: 12px;
  color: #8D8D9F;
}

/* Network Diagram */
.network-diagram {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-dots {
  position: relative;
  width: 200px;
  height: 200px;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #EB7300;
  border-radius: 50%;
}

.central-dot {
  width: 60px;
  height: 60px;
  background: #EB7300;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0C1E;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Position dots around the central dot */
.dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.dot:nth-child(2) { top: 20%; right: 0; }
.dot:nth-child(3) { bottom: 20%; right: 0; }
.dot:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.dot:nth-child(6) { bottom: 20%; left: 0; }
.dot:nth-child(7) { top: 20%; left: 0; }
.dot:nth-child(8) { top: 50%; left: 0; transform: translateY(-50%); }
.dot:nth-child(9) { top: 50%; right: 0; transform: translateY(-50%); }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .card-grid.two-col,
  .card-grid.three-col,
  .card-grid.four-col {
    grid-template-columns: 1fr;
  }
  
  .hero-section,
  .cta-section {
    padding: 40px 20px;
  }
  
  .profile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .network-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .profile-stats,
  .network-stats {
    gap: 20px;
  }
  
  .ethos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Case Studies Page Specific Styles */
.case-studies-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 60px 0 40px 0;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: #8D8D9F;
  border: 1px solid rgba(141, 141, 159, 0.20);
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #EB7300;
  color: #0D0C1E;
  border-color: #EB7300;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.case-study-card {
  background: linear-gradient(90deg, rgba(141, 141, 159, 0.10) 0%, rgba(215, 56, 4, 0.10) 100%);
  border: 1px solid rgba(141, 141, 159, 0.20);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.case-study-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 56, 4, 0.4);
  box-shadow: 0 8px 32px rgba(215, 56, 4, 0.1);
}

.case-study-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #0D0C1E;
}

.case-study-tag.fintech {
  background: #EB7300;
}

.case-study-tag.ecommerce {
  background: #FF6B6B;
}

.case-study-tag.healthcare {
  background: #4ECDC4;
}

.case-study-tag.manufacturing {
  background: #45B7D1;
}

.case-study-tag.logistics {
  background: #96CEB4;
}

.case-study-tag.realestate {
  background: #FFEAA7;
}

.case-study-icon {
  width: 48px;
  height: 48px;
  background: #EB7300;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0C1E;
  margin-bottom: 20px;
}

.case-study-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F1F1F1;
  margin-bottom: 20px;
  line-height: 1.3;
}

.case-study-details {
  margin-bottom: 24px;
}

.detail-item {
  margin-bottom: 16px;
}

.detail-item .label {
  font-size: 12px;
  font-weight: 600;
  color: #EB7300;
  display: block;
  margin-bottom: 4px;
}

.detail-item .value {
  font-size: 14px;
  color: #8D8D9F;
  line-height: 1.4;
}

.case-study-result {
  background: linear-gradient(135deg, #0B4A3A 0%, #1A5F4F 100%);
  border: 1px solid rgba(215, 56, 4, 0.3);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.result-number {
  font-size: 32px;
  font-weight: 700;
  color: #EB7300;
  line-height: 1;
}

.result-text {
  flex: 1;
}

.result-text > div:first-child {
  font-size: 14px;
  font-weight: 600;
  color: #F1F1F1;
  margin-bottom: 4px;
}

.result-subtitle {
  font-size: 12px;
  color: #8D8D9F;
  line-height: 1.3;
}

/* Case Studies Responsive Design */
@media (max-width: 768px) {
  .case-studies-filters {
    gap: 8px;
    margin: 40px 0 20px 0;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }
  
  .case-study-card {
    padding: 24px;
  }
  
  .case-study-result {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Contact Page Specific Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 80px 0;
  align-items: start;
}

.contact-form-card {
  background: linear-gradient(90deg, rgba(141, 141, 159, 0.10) 0%, rgba(215, 56, 4, 0.10) 100%);
  border: 1px solid rgba(141, 141, 159, 0.20);
  border-radius: 16px;
  padding: 32px;
}

.contact-form-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #F1F1F1;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  background: rgba(141, 141, 159, 0.1);
  border: 1px solid rgba(141, 141, 159, 0.2);
  border-radius: 8px;
  padding: 16px;
  font-family: Inter;
  font-size: 14px;
  color: #F1F1F1;
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8D8D9F;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #EB7300;
  background: rgba(215, 56, 4, 0.05);
}

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

.full-width {
  width: 100%;
}

.contact-right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.consultation-section,
.contact-info-section {
  background: linear-gradient(90deg, rgba(141, 141, 159, 0.10) 0%, rgba(215, 56, 4, 0.10) 100%);
  border: 1px solid rgba(141, 141, 159, 0.20);
  border-radius: 16px;
  padding: 32px;
}

.consultation-section h3,
.contact-info-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #F1F1F1;
  margin-bottom: 16px;
}

.consultation-section p {
  font-size: 14px;
  color: #8D8D9F;
  margin-bottom: 24px;
  line-height: 1.4;
}

.calendar-integration {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(215, 56, 4, 0.1);
  border: 1px solid rgba(215, 56, 4, 0.2);
  border-radius: 12px;
}

.calendar-icon {
  width: 48px;
  height: 48px;
  background: #EB7300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0C1E;
  flex-shrink: 0;
}

.calendar-text {
  flex: 1;
}

.calendar-title {
  font-size: 14px;
  font-weight: 600;
  color: #F1F1F1;
  margin-bottom: 4px;
}

.calendar-subtitle {
  font-size: 12px;
  color: #8D8D9F;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.email-icon {
  background: rgba(51, 236, 135, 0.2);
  color: #EB7300;
}

.phone-icon {
  background: rgba(255, 107, 107, 0.2);
  color: #FF6B6B;
}

.time-icon {
  background: rgba(78, 205, 196, 0.2);
  color: #4ECDC4;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: #8D8D9F;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14px;
  font-weight: 500;
  color: #F1F1F1;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
  }
  
  .contact-right-column {
    gap: 30px;
  }
  
  .contact-form-card,
  .consultation-section,
  .contact-info-section {
    padding: 24px;
  }
  
  .calendar-integration {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
/* Reset link styles in navbar */
header a {
  text-decoration: none !important;
}

header nav {
  background: #001524;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
}

.navbar-logo {
  color: #EB7300;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1024px) {
  .navbar-nav {
    display: none;
  }
}

.navbar-link {
  color: #FFECD1;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-link:hover {
  color: #EB7300;
}

.navbar-link.active {
  color: #EB7300;
  font-weight: 500;
}

.navbar-cta {
  background: #EB7300;
  color: #001524;
  font-family: Inter;
  font-weight: 600;
  border-radius: 8px;
  width: 133.75px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.56px 23.75px 7.44px 24px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.navbar-cta:hover {
  background: #EB7300;
}

@media (max-width: 1024px) {
  .navbar-cta {
    display: none;
  }
}

.navbar-mobile-btn {
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .navbar-mobile-btn {
    display: none;
  }
}

/* Ensure hover effects work on navbar links */
.desktop-nav a:not(.custom-accent):hover {
  color: #EB7300 !important;
}

/* Mobile menu hover effects */
#mobile-menu a:not(.custom-accent):hover {
  color: #EB7300 !important;
}

/* Footer link hover effects */
footer a:hover {
  color: #EB7300 !important;
}

/* Ensure transitions work */
.transition-colors {
  transition: color 0.3s ease;
}

.transition-all {
  transition: all 0.3s ease;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Custom CSS Variables */
:root {
  --color-bg-primary: #001524;
  --color-text-primary: #FFECD1;
  --color-accent: #EB7300;
  --color-border: rgba(255, 255, 255, 0.1);
}

/* Global Styles */
body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Hide scrollbar */
::-webkit-scrollbar {
  display: none;
}

html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom background class */
.custom-bg {
  background-color: #001524;
}

/* Custom text color */
.custom-text {
  color: #FFECD1;
}

/* Custom accent background */
.custom-accent {
  background-color: #EB7300;
}

/* Custom accent text */
.custom-accent-text {
  color: #EB7300;
}

/* Opacity utilities */
.opacity-60 {
  opacity: 0.6;
}

.opacity-80 {
  opacity: 0.8;
}

/* Navigation fixes */
nav a {
  text-decoration: none !important;
}

/* Spacing utilities */
.space-x-2 > * + * {
  margin-left: 0.5rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.gap-8 {
  gap: 2rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-8 {
  margin-left: 2rem;
}

/* Text utilities */
.whitespace-nowrap {
  white-space: nowrap;
}

/* Responsive utilities */
.hidden {
  display: none;
}

/* Mobile menu button - hidden by default, shown on mobile */
.mobile-menu-button {
  display: none;
}

/* Desktop navigation - shown by default, hidden on mobile */
.desktop-nav {
  display: flex;
}

/* Mobile styles - show hamburger, hide desktop nav */
@media (max-width: 767px) {
  .mobile-menu-button {
    display: block !important;
  }
  
  .desktop-nav {
    display: none !important;
  }
}

/* Border utilities */
.border-gray-800 {
  border-color: rgb(31 41 55);
}

.border-gray-700 {
  border-color: rgb(55 65 81);
}

.border-gray-600 {
  border-color: rgb(75 85 99);
}
