/* Modern Footer Styles */
.modern-footer {
  background-color: #E8CEA9;
  color: #000;
  font-family: "Familjen Grotesk", sans-serif;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 141, 75, 0.3), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo-section {
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo img {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.credits-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.credits-logo {
  transition: transform 0.3s ease;
}

.credits-logo:hover {
  transform: scale(1.1);
}

.credits-logo img {
  max-height: 40px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 141, 75, 0.4), transparent);
  margin: 2rem 0;
  position: relative;
}

.footer-divider::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #BE8D4B;
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.footer-copyright p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-link {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #BE8D4B, #f0c78a);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #000;
}

.footer-link:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .footer-content {
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    max-height: 60px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-links {
    gap: 1.5rem;
  }

  .footer-credits{
    flex-direction: column !important;
  }

  .credits-logo img{
    height: 25px !important;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 1.5rem 1rem 1rem;
  }
  
  .footer-logo img {
    max-height: 50px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-copyright,
  .footer-link {
    font-size: 0.8rem;
  }
}

/* Animation for footer elements */
.footer-logo,
.credits-logo,
.footer-link {
  animation: fadeInUp 0.6s ease-out;
}

.footer-logo {
  animation-delay: 0.1s;
}

.credits-logo {
  animation-delay: 0.2s;
}

.footer-link:nth-child(1) {
  animation-delay: 0.3s;
}

.footer-link:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-link:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects for interactive elements */
.footer-logo:hover,
.credits-logo:hover {
  filter: brightness(1.1);
}

.footer-link:hover {
  transform: translateY(-2px);
}

/* Focus states for accessibility */
.footer-link:focus {
  outline: 2px solid #BE8D4B;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print styles */
@media print {
  .modern-footer {
    background: none !important;
    color: #000 !important;
  }
  
  .footer-divider {
    background: #000 !important;
  }
}

/* Features Footer Glassmorphism Styling */
.features-footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.features-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #BE8D4B, #f0c78a, #BE8D4B);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.features-footer:hover::before {
  transform: scaleX(1);
}

.features-footer:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.features-footer p {
  color: white;
  font-family: "Familjen Grotesk", sans-serif;
  margin: 0;
  position: relative;
  z-index: 1;
}

.features-footer p:first-child {
  margin-bottom: 1.5rem;
}

.features-footer strong {
  color: #f0c78a;
  font-weight: 700;
}

.features-footer em {
  color: #BE8D4B;
  font-style: italic;
}

/* Responsive adjustments for features-footer */
@media (max-width: 768px) {
  .features-footer {
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .features-footer p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .features-footer {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .features-footer p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* How to Explore Section - Timeline Layout Redesign */
.explore-section {
  background: linear-gradient(135deg, rgba(232, 206, 169, 0.12) 0%, rgba(232, 206, 169, 0.06) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.explore-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(190, 141, 75, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(232, 206, 169, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.explore-header {
  text-align: center;
  margin-bottom: 6rem;
}

.explore-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.03em;
}

.explore-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #BE8D4B, #E8CEA9);
  border-radius: 3px;
}

.explore-subtitle {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline Layout */
.explore-timeline {
  position: relative;
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.explore-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 80%;
  background: linear-gradient(180deg, #BE8D4B, #E8CEA9, #BE8D4B);
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 500px;
}

.timeline-step:nth-child(odd) {
  justify-content: flex-end;
  margin-right: 2rem;
}

.timeline-step:nth-child(even) {
  justify-content: flex-start;
  margin-left: 2rem;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(190, 141, 75, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(190, 141, 75, 0.15);
  transition: all 0.4s ease;
  position: relative;
  width: 100%;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(190, 141, 75, 0.25);
  border-color: rgba(190, 141, 75, 0.4);
}

.timeline-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8CEA9, #BE8D4B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 10px 30px rgba(190, 141, 75, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.timeline-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.timeline-description {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.timeline-visual {
  flex: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timeline-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(232, 206, 169, 0.3), rgba(190, 141, 75, 0.3));
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.visual-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #E8CEA9, #BE8D4B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(190, 141, 75, 0.3);
  transition: all 0.4s ease;
}

.timeline-step:hover .visual-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(190, 141, 75, 0.4);
}

.visual-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%);
}

/* Controls Grid */
.explore-controls-section {
  margin-top: 6rem;
}

.controls-header {
  text-align: center;
  margin-bottom: 4rem;
}

.controls-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.controls-subtitle {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.control-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(190, 141, 75, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.control-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #BE8D4B, #E8CEA9);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.control-card:hover::before {
  transform: scaleX(1);
}

.control-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(190, 141, 75, 0.2);
  border-color: rgba(190, 141, 75, 0.4);
}

.control-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8CEA9, #BE8D4B);
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(190, 141, 75, 0.2);
}

.control-card:hover .control-icon-large {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(190, 141, 75, 0.3);
}

.control-icon-large img {
  width: 55px;
  height: 55px;
  filter: brightness(0) saturate(100%);
}

.control-title-large {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.control-description-large {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Advanced Controls */
.advanced-section {
  margin-top: 4rem;
}

.advanced-header {
  text-align: center;
  margin-bottom: 3rem;
}

.advanced-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.advanced-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(190, 141, 75, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 200px;
  width: 200px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.advanced-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(190, 141, 75, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(190, 141, 75, 0.15);
}

.advanced-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 206, 169, 0.8), rgba(190, 141, 75, 0.8));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.advanced-item:hover .advanced-icon-large {
  transform: scale(1.1);
  background: linear-gradient(135deg, #E8CEA9, #BE8D4B);
}

.advanced-icon-large img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%);
}

.advanced-title-large {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.01em;
}

/* Advanced Controls Styling */
.advanced-control {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(190, 141, 75, 0.15);
  position: relative;
}

.advanced-control:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(190, 141, 75, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(190, 141, 75, 0.25);
}

.advanced-control .control-icon-large {
  background: linear-gradient(135deg, rgba(232, 206, 169, 0.8), rgba(190, 141, 75, 0.8));
}

.advanced-control:hover .control-icon-large {
  background: linear-gradient(135deg, #E8CEA9, #BE8D4B);
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(190, 141, 75, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .explore-timeline {
    flex-direction: column;
    gap: 3rem;
  }
  
  .explore-timeline::before {
    left: 30px;
    top: 0;
    bottom: 0;
    height: auto;
    transform: translateX(-50%);
  }
  
  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 60px;
    max-width: 100%;
  }
  
  .timeline-step:nth-child(odd),
  .timeline-step:nth-child(even) {
    justify-content: flex-start;
    margin-right: 0;
    margin-left: 60px;
  }
  
  .timeline-content {
    margin: 0 0 2rem 0;
    max-width: 100%;
  }
  
  .controls-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .explore-section {
    padding: 5rem 0;
  }
  
  .explore-container {
    padding: 0 1.5rem;
  }
  
  .explore-title {
    font-size: 3.5rem;
  }
  
  .explore-subtitle {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
  
  .explore-timeline {
    gap: 2rem;
  }
  
  .timeline-step {
    margin-left: 40px;
  }
  
  .timeline-step:nth-child(odd),
  .timeline-step:nth-child(even) {
    margin-left: 40px;
  }
  
  .timeline-content {
    padding: 2rem;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    top: -20px;
  }
  
  .timeline-title {
    font-size: 1.5rem;
  }
  
  .controls-title {
    font-size: 2.5rem;
  }
  
  .controls-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .control-card {
    padding: 2rem;
  }
  
  .advanced-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .advanced-control::after {
    font-size: 0.6rem;
    padding: 3px 6px;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .explore-section {
    padding: 4rem 0;
  }
  
  .explore-title {
    font-size: 2.8rem;
  }

  .explore-subtitle{

  }
  
  .explore-timeline {
    gap: 1.5rem;
  }
  
  .timeline-step {
    margin-left: 0;
  }
  
  .timeline-step:nth-child(odd),
  .timeline-step:nth-child(even) {
    margin-left: 0;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    top: -32px;
  }
  
  .controls-title {
    font-size: 2rem;
  }
  
  .control-card {
    padding: 1.5rem;
  }
  
  .advanced-control::after {
    font-size: 0.5rem;
    padding: 2px 5px;
    top: 8px;
    right: 8px;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background .logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 1;
}

.hero-background .logo-bg img {
  max-width: 400px;
  height: auto;
  filter: brightness(0.8) contrast(1.2);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 120px 120px;
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s ease;
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(48, 33, 88, 0.3), rgba(26, 26, 46, 0.2));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 10px;
  right: 5px;
  background: linear-gradient(135deg, #E8CEA9, #BE8D4B);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: rotate(5deg) translateY(0px); }
  50% { transform: rotate(5deg) translateY(-5px); }
}

.badge-text {
  color: #302158;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-right {
  padding-left: 2rem;
}

.hero-text-content {
  max-width: 500px;
}

.hero-subtitle {
  color: #E8CEA9;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E8CEA9, #BE8D4B);
  margin-bottom: 2rem;
  border-radius: 2px;
  opacity: 0;
  animation: expandWidth 1s ease 0.9s forwards;
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

.hero-description {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
  font-weight: 400;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 1s ease 1.3s forwards;
}

.hero-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #E8CEA9, #BE8D4B);
  color: #302158;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(232, 206, 169, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-explore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero-explore-btn:hover::before {
  left: 100%;
}

.hero-explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 206, 169, 0.4);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.hero-explore-btn:hover .btn-icon {
  transform: translateY(2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.scroll-link:hover {
  color: #E8CEA9;
  transform: translateY(-5px);
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid currentColor;
  border-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(15px); opacity: 0.5; }
}

.scroll-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design for Hero Section */
@media (max-width: 1200px) {
  .hero-content {
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-right {
    padding-left: 0;
    order: -1;
  }
  
  .hero-text-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image-container {
    transform: perspective(1000px) rotateY(0deg);
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-badge {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .hero-explore-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-badge {
    padding: 10px 16px;
    right: 10px;
    bottom: -10px;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .hero-background .logo-bg img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 70px 0 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-divider{
    height: 3px !important;
    width: 100% !important;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-explore-btn {
    padding: 6px 30px;
    font-size: 1.1rem;
  }
  
  .hero-badge {
    padding: 8px 12px;
    right: 5px;
    bottom: -8px;
  }
  
  .badge-text {
    font-size: 0.7rem;
  }
  
  .hero-background .logo-bg img {
    max-width: 250px;
  }
  
  .scroll-mouse {
    width: 25px;
    height: 40px;
  }
  
  .scroll-text {
    font-size: 0.75rem;
  }
}

/* Dark Theme Styles */
/* Global Dark Theme Overrides */
body {
  background-color: #090809 !important;
  color: #ebcea9 !important;
}

/* Main content background */
.main-content {
  background-color: #090809 !important;
}

/* Text colors */
.text-white {
  color: #ebcea9 !important;
}

.text-black {
  color: #ebcea9 !important;
}

.text-extra-dark-gray,
.text-dark-gray,
.text-medium-gray,
.text-light-gray,
.text-very-light-gray {
  color: #ebcea9 !important;
}

/* Background colors */
.bg-white {
  background-color: #090809 !important;
}

.bg-light-gray,
.bg-very-light-gray,
.bg-extra-light-gray {
  background-color: #090809 !important;
}

/* Header/Navigation Dark Theme */
.navbar {
  background-color: #090809 !important;
}

.navbar-light {
  background-color: #090809 !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #ebcea9 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #be8d48 !important;
}

.navbar-brand {
  color: #ebcea9 !important;
}

/* Social icons in header */
.social-icon-style-05 li a {
  color: #ebcea9 !important;
  border-color: #be8d48 !important;
}

.social-icon-style-05 li a:hover {
  background-color: #be8d48 !important;
  color: #090809 !important;
}

.hero-background .logo-bg img {
  filter: brightness(0.3) contrast(1.2) !important;
}

.hero-particles {
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(235, 206, 169, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(235, 206, 169, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(235, 206, 169, 0.05) 1px, transparent 1px) !important;
}

.hero-subtitle {
  color: #be8d48 !important;
}

.hero-title {
  color: #ebcea9 !important;
}

.hero-divider {
  background: linear-gradient(90deg, #ebcea9, #be8d48) !important;
}

.hero-description {
  color: #ebcea9 !important;
}

.hero-explore-btn {
  background: linear-gradient(135deg, #ebcea9, #be8d48) !important;
  color: #090809 !important;
  box-shadow: 0 10px 25px rgba(235, 206, 169, 0.3) !important;
}

.hero-explore-btn:hover {
  box-shadow: 0 15px 35px rgba(235, 206, 169, 0.4) !important;
}

.hero-badge {
  background: linear-gradient(135deg, #ebcea9, #be8d48) !important;
}

.badge-text {
  color: #090809 !important;
}

/* Video Section */
.video-section {
  background-color: #090809 !important;
}

.opacity-extra-medium {
  background-color: rgba(9, 8, 9, 0.7) !important;
}

/* Welcome Section */
.half-section {
  background-color: #090809 !important;
}

.half-section h2 {
  color: #ebcea9 !important;
}

.half-section p {
  color: #ebcea9 !important;
}

/* Explore Section Dark Theme */
.explore-section {
  background-color: #090809 !important;
}

.explore-title {
  color: #ebcea9 !important;
}

.explore-subtitle {
  color: #ebcea9 !important;
}

.timeline-content {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border: 1px solid rgba(235, 206, 169, 0.1) !important;
}

.timeline-content:hover {
  background-color: rgba(235, 206, 169, 0.1) !important;
  border-color: rgba(190, 141, 72, 0.3) !important;
}

.timeline-number {
  background: linear-gradient(135deg, #ebcea9, #be8d48) !important;
  color: #090809 !important;
}

.timeline-title {
  color: #ebcea9 !important;
}

.timeline-description {
  color: #ebcea9 !important;
}

.controls-title {
  color: #ebcea9 !important;
}

.controls-subtitle {
  color: #ebcea9 !important;
}

.control-card {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border: 1px solid rgba(235, 206, 169, 0.1) !important;
}

.control-card:hover {
  background-color: rgba(235, 206, 169, 0.1) !important;
  border-color: rgba(190, 141, 72, 0.3) !important;
}

.control-title-large {
  color: #ebcea9 !important;
}

.control-description-large {
  color: #ebcea9 !important;
}

/* Features Section */
#features {
  background-color: #090809 !important;
}

#features h3 {
  color: #ebcea9 !important;
}

.feature-card {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border: 1px solid rgba(235, 206, 169, 0.1) !important;
}

.feature-card:hover {
  background-color: rgba(235, 206, 169, 0.1) !important;
  border-color: rgba(190, 141, 72, 0.3) !important;
}

.feature-icon {
  background: linear-gradient(135deg, #ebcea9, #be8d48) !important;
  color: #090809 !important;
}

.feature-title {
  color: #ebcea9 !important;
}

.feature-description {
  color: #ebcea9 !important;
}

.features-footer p {
  color: #ebcea9 !important;
}

/* Explore Images Section */
.d-section {
  background-color: #090809 !important;
}

.d-section h3 {
  color: #ebcea9 !important;
}

.m-section {
  background-color: #090809 !important;
}

.m-section h3 {
  color: #ebcea9 !important;
}

/* Footer Dark Theme Updates */
.modern-footer {
  background-color: #090809 !important;
  color: #ebcea9 !important;
}

.modern-footer::before {
  background: linear-gradient(90deg, transparent, rgba(190, 141, 72, 0.3), transparent) !important;
}

.footer-divider {
  background: linear-gradient(90deg, transparent, rgba(190, 141, 72, 0.4), transparent) !important;
}

.footer-divider::before {
  background: #be8d48 !important;
}

.footer-copyright {
  color: rgba(235, 206, 169, 0.7) !important;
}

.footer-link {
  color: rgba(235, 206, 169, 0.7) !important;
}

.footer-link::after {
  background: linear-gradient(90deg, #be8d48, #ebcea9) !important;
}

.footer-link:hover {
  color: #ebcea9 !important;
}

/* Scroll to top button */
.scroll-top-arrow {
  background-color: #be8d48 !important;
  color: #090809 !important;
}

.scroll-top-arrow:hover {
  background-color: #ebcea9 !important;
}

/* Form elements */
input, select, textarea {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border: 1px solid rgba(235, 206, 169, 0.2) !important;
  color: #ebcea9 !important;
}

input:focus, textarea:focus {
  border: 1px solid #be8d48 !important;
  background-color: rgba(235, 206, 169, 0.1) !important;
}

/* Buttons */
.btn {
  color: #ebcea9 !important;
}

.btn-white {
  background-color: #be8d48 !important;
  color: #090809 !important;
}

.btn-white:hover {
  background-color: #ebcea9 !important;
  color: #090809 !important;
}

/* Links */
a {
  color: #ebcea9 !important;
}

a:hover {
  color: #be8d48 !important;
}

/* Selection */
::selection {
  color: #090809 !important;
  background: #ebcea9 !important;
}

::-moz-selection {
  color: #090809 !important;
  background: #ebcea9 !important;
}

/* Placeholder text */
::-webkit-input-placeholder {
  color: rgba(235, 206, 169, 0.6) !important;
}

::-moz-placeholder {
  color: rgba(235, 206, 169, 0.6) !important;
}

:-ms-input-placeholder {
  color: rgba(235, 206, 169, 0.6) !important;
}

/* Section backgrounds */
section {
  background-color: #090809 !important;
}

/* Card and box elements */
.card, .box, .panel {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border: 1px solid rgba(235, 206, 169, 0.1) !important;
}

/* Tables */
table {
  background-color: #090809 !important;
}

th, td {
  color: #ebcea9 !important;
  border-color: rgba(235, 206, 169, 0.2) !important;
}

/* Modal and popup backgrounds */
.modal-content {
  background-color: #090809 !important;
  border: 1px solid rgba(235, 206, 169, 0.2) !important;
}

.modal-header, .modal-footer {
  border-color: rgba(235, 206, 169, 0.2) !important;
}

/* Dropdown menus */
.dropdown-menu {
  background-color: #090809 !important;
  border: 1px solid rgba(235, 206, 169, 0.2) !important;
}

.dropdown-item {
  color: #ebcea9 !important;
}

.dropdown-item:hover {
  background-color: rgba(235, 206, 169, 0.1) !important;
  color: #be8d48 !important;
}

/* Alert boxes */
.alert {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border: 1px solid rgba(235, 206, 169, 0.2) !important;
  color: #ebcea9 !important;
}

/* Progress bars */
.progress {
  background-color: rgba(235, 206, 169, 0.1) !important;
}

.progress-bar {
  background-color: #be8d48 !important;
}

/* Badges */
.badge {
  background-color: #be8d48 !important;
  color: #090809 !important;
}

/* Tooltips */
.tooltip-inner {
  background-color: #090809 !important;
  color: #ebcea9 !important;
  border: 1px solid rgba(235, 206, 169, 0.2) !important;
}

.tooltip.bs-tooltip-top .arrow::before {
  border-top-color: #090809 !important;
}

.tooltip.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #090809 !important;
}

.tooltip.bs-tooltip-left .arrow::before {
  border-left-color: #090809 !important;
}

.tooltip.bs-tooltip-right .arrow::before {
  border-right-color: #090809 !important;
}

/* Pagination */
.pagination .page-link {
  background-color: #090809 !important;
  border-color: rgba(235, 206, 169, 0.2) !important;
  color: #ebcea9 !important;
}

.pagination .page-link:hover {
  background-color: rgba(235, 206, 169, 0.1) !important;
  color: #be8d48 !important;
}

.pagination .page-item.active .page-link {
  background-color: #be8d48 !important;
  border-color: #be8d48 !important;
  color: #090809 !important;
}

/* Breadcrumbs */
.breadcrumb {
  background-color: rgba(235, 206, 169, 0.05) !important;
}

.breadcrumb-item {
  color: #ebcea9 !important;
}

.breadcrumb-item.active {
  color: #be8d48 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(235, 206, 169, 0.5) !important;
}

/* List groups */
.list-group-item {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border-color: rgba(235, 206, 169, 0.2) !important;
  color: #ebcea9 !important;
}

.list-group-item:hover {
  background-color: rgba(235, 206, 169, 0.1) !important;
}

.list-group-item.active {
  background-color: #be8d48 !important;
  border-color: #be8d48 !important;
  color: #090809 !important;
}

/* Nav tabs */
.nav-tabs {
  border-bottom-color: rgba(235, 206, 169, 0.2) !important;
}

.nav-tabs .nav-link {
  color: #ebcea9 !important;
  background-color: transparent !important;
  border-color: transparent !important;
}

.nav-tabs .nav-link:hover {
  color: #be8d48 !important;
  border-color: rgba(235, 206, 169, 0.2) !important;
}

.nav-tabs .nav-link.active {
  color: #be8d48 !important;
  background-color: rgba(235, 206, 169, 0.05) !important;
  border-color: rgba(235, 206, 169, 0.2) !important;
}

/* Accordion */
.accordion-button {
  background-color: rgba(235, 206, 169, 0.05) !important;
  color: #ebcea9 !important;
  border-color: rgba(235, 206, 169, 0.2) !important;
}

.accordion-button:hover {
  background-color: rgba(235, 206, 169, 0.1) !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(190, 141, 72, 0.1) !important;
  color: #be8d48 !important;
}

.accordion-body {
  background-color: rgba(235, 206, 169, 0.02) !important;
  color: #ebcea9 !important;
}

/* Code blocks */
code, pre {
  background-color: rgba(235, 206, 169, 0.05) !important;
  color: #ebcea9 !important;
  border: 1px solid rgba(235, 206, 169, 0.2) !important;
}

/* Blockquotes */
blockquote {
  background-color: rgba(235, 206, 169, 0.05) !important;
  border-left: 4px solid #be8d48 !important;
  color: #ebcea9 !important;
}

/* Horizontal rules */
hr {
  border-color: rgba(235, 206, 169, 0.2) !important;
}

/* Focus states */
*:focus {
  outline-color: #be8d48 !important;
}

/* Disabled states */
.disabled, [disabled] {
  opacity: 0.5 !important;
  color: rgba(235, 206, 169, 0.5) !important;
}

/* Loading states */
.loading {
  border-color: rgba(235, 206, 169, 0.2) !important;
  border-top-color: #be8d48 !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #090809 !important;
}

::-webkit-scrollbar-thumb {
  background: #be8d48 !important;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ebcea9 !important;
}

/* Print styles */
@media print {
  body {
    background-color: white !important;
    color: black !important;
  }
  
  .hero-section,
  .explore-section,
  .modern-footer {
    background-color: white !important;
  }
  
  .hero-title,
  .hero-description,
  .explore-title,
  .feature-title {
    color: black !important;
  }
}

/* Header/Navigation Light Theme for Logo Visibility */
.navbar {
  background-color: #ebcea9 !important;
  border-bottom: 1px solid rgba(190, 141, 72, 0.2) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.navbar-light {
  background-color: #ebcea9 !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #090809 !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease !important;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #be8d48 !important;
  transform: translateY(-1px) !important;
}

.navbar-brand {
  color: #090809 !important;
  font-weight: 700 !important;
}

.navbar-brand img {
  max-height: 50px !important;
  width: auto !important;
}

/* Social icons in header - light theme */
.social-icon-style-05 li a {
  color: #090809 !important;
  border-color: #be8d48 !important;
  background-color: rgba(190, 141, 72, 0.1) !important;
}

.social-icon-style-05 li a:hover {
  background-color: #be8d48 !important;
  color: #ebcea9 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(190, 141, 72, 0.3) !important;
}

/* Responsive Navbar Styles */
.navbar-toggler {
  border: 2px solid #090809 !important;
  padding: 0.25rem 0.5rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(190, 141, 72, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(9, 8, 9, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #ebcea9 !important;
    border-top: 1px solid rgba(190, 141, 72, 0.2) !important;
    margin-top: 1rem !important;
    padding: 1rem 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }
  
  .navbar-nav {
    text-align: center !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(190, 141, 72, 0.1) !important;
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none !important;
  }
  
  .social-icon-style-05 {
    justify-content: center !important;
    margin-top: 1rem !important;
  }
  
  .social-icon-style-05 li {
    margin: 0 0.5rem !important;
  }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
  .navbar-brand img {
    max-height: 40px !important;
  }
  
  .navbar-toggler {
    padding: 0.2rem 0.4rem !important;
  }
  
  .social-icon-style-05 li {
    margin: 0 0.25rem !important;
  }
  
  .social-icon-style-05 li a {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
  }
}

/* Footer Light Theme for Logo Visibility - Compact Design */
.modern-footer {
  background-color: #ebcea9 !important;
  color: #090809 !important;
  border-top: 1px solid rgba(190, 141, 72, 0.2) !important;
  padding: 3rem 0 1rem !important;
}

.footer-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
}

.footer-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: center !important;
  margin-bottom: 1rem !important;
  gap: 2rem !important;
}

.footer-logo-section {
  margin-bottom: 0 !important;
  flex-shrink: 0 !important;
}

.footer-logo {
  display: inline-block !important;
  transition: transform 0.3s ease !important;
}

.footer-logo:hover {
  transform: scale(1.05) !important;
}

.footer-logo img {
  max-height: 50px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
}

.footer-credits {
  display: flex !important;
  flex-direction: row;
  align-items: center !important;
  gap: 0.75rem !important;
  flex-shrink: 0 !important;
}

.credits-text {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: #090809 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.credits-logo {
  transition: transform 0.3s ease !important;
}

.credits-logo:hover {
  transform: scale(1.1) !important;
}

.credits-logo img {
  max-height: 30px !important;
  width: auto !important;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) !important;
}

.footer-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(190, 141, 72, 0.4), transparent) !important;
  margin: 1rem 0 !important;
  position: relative !important;
}

.footer-divider::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 4px !important;
  height: 4px !important;
  background: #be8d48 !important;
  border-radius: 50% !important;
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.footer-copyright {
  font-size: 0.75rem !important;
  color: rgba(9, 8, 9, 0.7) !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

.footer-copyright p {
  margin: 0 !important;
}

.footer-links {
  display: flex !important;
  gap: 1.5rem !important;
  align-items: center !important;
}

.footer-link {
  color: rgba(9, 8, 9, 0.7) !important;
  text-decoration: none !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  padding: 0.25rem 0 !important;
}

.footer-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, #be8d48, #090809) !important;
  transition: width 0.3s ease !important;
}

.footer-link:hover {
  color: #090809 !important;
}

.footer-link:hover::after {
  width: 100% !important;
}

/* Footer responsive adjustments - Compact */
@media (max-width: 768px) {
  .modern-footer {
    padding: 2rem 0 0.75rem !important;
  }
  
  .footer-container {
    padding: 0 1.5rem !important;
  }
  
  .footer-content {
    flex-direction: column !important;
    gap: 1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .footer-logo img {
    max-height: 50px !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center !important;
  }
  
  .footer-links {
    justify-content: center !important;
  }
  
  .footer-divider {
    margin: 0.75rem 0 !important;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 1rem !important;
  }
  
  .footer-content {
    gap: 0.75rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .footer-copyright {
    font-size: 0.7rem !important;
  }
  
  .footer-link {
    font-size: 0.7rem !important;
  }
  
  .footer-links {
    gap: 0.75rem !important;
  }
  
  .footer-divider {
    margin: 0.5rem 0 !important;
  }
}

/* Ultra compact for very small screens */
@media (max-width: 360px) {
  .footer-content {
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .footer-bottom {
    gap: 0.5rem !important;
  }
  
  .footer-divider {
    margin: 0.5rem 0 !important;
  }
}

/* Navbar fixed positioning adjustments */
.navbar.fixed-top {
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Navbar scroll effects */
.navbar.scrolled {
  background-color: rgba(235, 206, 169, 0.95) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
}

/* Ensure logo visibility in all states */
.navbar-brand img.default-logo,
.navbar-brand img.alt-logo,
.navbar-brand img.mobile-logo {
  filter: none !important;
  opacity: 1 !important;
}

/* Active navigation states */
.navbar-nav .nav-link.active {
  color: #be8d48 !important;
  font-weight: 600 !important;
}

/* Dropdown menus in light navbar */
.navbar-light .dropdown-menu {
  background-color: #ebcea9 !important;
  border: 1px solid rgba(190, 141, 72, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.navbar-light .dropdown-item {
  color: #090809 !important;
}

.navbar-light .dropdown-item:hover {
  background-color: rgba(190, 141, 72, 0.1) !important;
  color: #be8d48 !important;
}

/* Additional Responsive Navbar Styles */
.nav-header-container {
  position: relative !important;
  align-items: center !important;
}

/* Desktop Navigation */
@media (min-width: 992px) {
  .navbar-collapse {
    flex-grow: 0 !important;
  }
  
  .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
  }
  
  .navbar-nav .nav-item {
    margin: 0 0.5rem !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: rgba(190, 141, 72, 0.1) !important;
  }
  
  .social-icon-style-05 {
    margin-left: 1rem !important;
  }
}

/* Tablet Navigation */
@media (max-width: 991.98px) and (min-width: 768px) {
  .nav-header-container {
    justify-content: space-between !important;
  }
  
  .navbar-brand {
    order: 1 !important;
  }
  
  .navbar-toggler {
    order: 2 !important;
  }
  
  .navbar-collapse {
    order: 3 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  
  .social-icon-style-05 {
    order: 4 !important;
    margin-top: 0 !important;
  }
}

/* Mobile Navigation */
@media (max-width: 767.98px) {
  .nav-header-container {
    justify-content: space-between !important;
    padding: 0.5rem 1rem !important;
  }
  
  .navbar-brand {
    order: 1 !important;
  }
  
  .navbar-toggler {
    order: 2 !important;
  }
  
  .navbar-collapse {
    order: 3 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0.5rem !important;
  }
  
  .social-icon-style-05 {
    order: 4 !important;
    margin-top: 0 !important;
    justify-content: flex-end !important;
  }
  
  .social-icon-style-05 li {
    margin: 0 0.25rem !important;
  }
}

/* Extra small devices */
@media (max-width: 575.98px) {
  .nav-header-container {
    padding: 0.5rem !important;
  }
  
  .navbar-brand img {
    max-height: 35px !important;
  }
  
  .social-icon-style-05 li a {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 0.8rem !important;
  }
}

/* Navbar animation and transitions */
.navbar-collapse {
  transition: all 0.3s ease-in-out !important;
}

.navbar-collapse.collapsing {
  height: auto !important;
}

.navbar-collapse.show {
  animation: slideDown 0.3s ease-out !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure proper spacing for fixed navbar */
body {
  padding-top: 80px !important;
}

@media (max-width: 767.98px) {
  body {
    padding-top: 70px !important;
  }
}

/* Navbar scroll effects */
.navbar.scrolled {
  background-color: rgba(235, 206, 169, 0.98) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Active navigation link styling */
.navbar-nav .nav-link.active {
  color: #be8d48 !important;
  font-weight: 600 !important;
  background-color: rgba(190, 141, 72, 0.1) !important;
  border-radius: 6px !important;
}

/* Hover effects for navigation */
.navbar-nav .nav-link {
  position: relative !important;
  overflow: hidden !important;
}

.navbar-nav .nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #be8d48, #090809) !important;
  transition: all 0.3s ease !important;
  transform: translateX(-50%) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 80% !important;
}

/* Social icons responsive adjustments */
.social-icon-style-05 {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.social-icon-style-05 li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.social-icon-style-05 li a i {
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
}

.social-icon-style-05 li a:hover i {
  transform: scale(1.1) !important;
} 

/* Mobile Navigation - Improved Layout */
@media (max-width: 767.98px) {
  .nav-header-container {
    justify-content: space-between !important;
    padding: 0.5rem 1rem !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  
  .navbar-brand {
    order: 1 !important;
    flex: 0 0 auto !important;
  }
  
  .navbar-toggler {
    order: 3 !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }
  
  .navbar-collapse {
    order: 4 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0.5rem !important;
    background-color: rgba(235, 206, 169, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  }
  
  .social-icon-style-05 {
    order: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
  }
  
  .social-icon-style-05 li {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .social-icon-style-05 li a {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
  }
  
  .social-icon-style-05 li a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(190, 141, 72, 0.3) !important;
  }
  
  .social-icon-style-05 li a i {
    font-size: 1rem !important;
  }
}

/* Extra small devices - Further optimized */
@media (max-width: 575.98px) {
    .navbar.navbar-boxed{
        padding: 0.5rem 0 !important;
    }

  .nav-header-container {
    padding: 0.5rem !important;
  }
  
  .navbar-brand img {
    max-height: 40px !important;
  }

  .half-section h2{
    font-size: 32px !important;
    margin-top: 2rem;
  }

  .half-section p{
    font-size: 14px !important;
  }
  
  .social-icon-style-05 {
    gap: 0.2rem !important;
  }
  
  .social-icon-style-05 li a {
    line-height: 28px !important;
    font-size: 1rem !important;
  }

  .hero-subtitle{
    font-size: 1.5rem !important;
  }
}

/* Very small devices */
@media (max-width: 480px) {
   
  .nav-header-container {
    padding: 0.4rem !important;
  }
  
  .social-icon-style-05 {
    gap: 0.15rem !important;
  }
  
  .social-icon-style-05 li a {
    width: 26px !important;
    height: 26px !important;
    line-height: 26px !important;
    font-size: 0.75rem !important;
  }
  
  .social-icon-style-05 li a i {
    font-size: 1rem !important;
  }
}