:root {
  --primary-color: #7e0000;
  --secondary-color: #f8f9fa;
  --tertiary-color: #45a973;
  --bg-primary: #33463e;
}

/* Header Styles */
.header-main {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

/* Logo Section */
.logo-section {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
  font-size: 16px !important;
}

.mobile-menu-btn {
  display: block;
  cursor: pointer;
}

.mobile-logo-section {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.main-logo-section {
  display: none;
}

@media (min-width: 1320px) {
  .desktop-nav {
    display: flex;
  }
  .contact-section {
    display: none;
  }
  .main-logo-section {
    display: block;
  }
  .mobile-menu-btn,
  .mobile-logo-section {
    display: none;
  }
}

.nav-item {
  position: relative;
}

.nav-item:hover {
  color: var(--tertiary-color);
}

.desktop-nav .nav-link {
  color: #000;

  transition: all 0.3s;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Dropdown Styles */
.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 79%;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 220px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  z-index: 1001;
  background-color: var(--bg-primary);
}

.nav-item:hover .dropdown-menu-custom {
  display: block;
}

.dropdown-menu-custom a {
  padding: 0.75rem 1.25rem;
  color: #fcfcfc;
  display: block;
  transition: all 0.2s;
}

.dropdown-menu-custom a:hover {
  color: var(--tertiary-color);
}

/* Contact Section */
.contact-section {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 16px !important;
}

@media (min-width: 1320px) {
  .contact-section {
    display: flex;
  }

  .contact-section .phone-number a {
    cursor: pointer;
  }
}

.phone-number {
  text-align: right;
  border: 2px solid #d21e27;
  padding: 4px 8px;
  border-radius: 6px;
}

.phone-number i .bi {
  color: #000;
}

.phone-label {
  font-size: 0.875rem;
  color: #666;
  display: block;
}

.phone-link {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

/* Mobile Menu Styles */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.mobile-nav > li {
  border-bottom: 1px solid #eee;
}

.mobile-nav a {
  padding: 1rem;
  color: #333;
  text-decoration: none;
  display: block;
  font-size: 1.1rem;
}

.nav-item-with-submenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item-with-submenu a {
  flex: 1;
}

.submenu-toggle {
  background: none;
  border: none;
  padding: 1rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--secondary-color);
}

.submenu a {
  padding-left: 2rem;
  font-size: 1rem;
}

/* .submenu-back {
  background: var(--primary-color);
  color: white;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
} */

.button-section {
  margin-top: auto;
  /* padding-top: 1rem; */
}

.social-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  margin: 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  transform: scale(1.1);
  background: #1a3d5c;
}

/* Skip Link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 2000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Demo Content */
.demo-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color), #4a90c9);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.mobile-logo-section .phone-number {
  border: none;
}
