/* Modern Header Styles */
.site-header-new {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

/* Top Bar */
.topbar-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 8px 0;
    font-size: 13px;
}

.topbar-content-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info-new {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-item-new {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #495057;
    font-weight: 500;
}

.contact-item-new i {
    font-size: 14px;
    color: #d4af37;
    width: 16px;
    text-align: center;
}

.contact-item-new a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-new a:hover {
    color: #d4af37;
}

.welcome-text-new {
    color: #6c757d;
    font-size: 12px;
    font-style: italic;
}

/* Main Navigation Bar */
.mainbar-new {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    border-top: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Enhanced sticky navigation when scrolled */
.mainbar-new.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-content-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styling */
.logo-section-new {
    flex-shrink: 0;
}

.logo-img-new {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Navigation Styling */
.nav-section-new {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu-new {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-link-new {
    color: #333333;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link-new:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link-new:hover:before {
    left: 100%;
}

.nav-link-new:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle-new {
    display: none;
}

.mobile-btn-new {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-btn-new:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hamburger-new {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-new span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 1px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-new span:nth-child(1) { top: 0; }
.hamburger-new span:nth-child(2) { top: 8px; }
.hamburger-new span:nth-child(3) { top: 16px; }

/* Mobile Menu */
.mobile-menu-new {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu-new.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Make mobile menu sticky when parent nav is sticky */
.mainbar-new.scrolled .mobile-menu-new {
    position: fixed;
    top: 80px; /* Adjust based on sticky nav height */
    left: 0;
    width: 100%;
}

.mobile-menu-content-new {
    padding: 20px;
}

.mobile-nav-link-new {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.mobile-nav-link-new:hover {
    background: #f8f9fa;
    color: #d4af37;
    transform: translateX(5px);
}

.mobile-contact-new {
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.mobile-contact-item-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #666;
}

.mobile-contact-item-new i {
    color: #d4af37;
    font-size: 16px;
    width: 20px;
}

.mobile-contact-item-new a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-contact-item-new a:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .nav-menu-new {
        gap: 20px;
    }
    
    .nav-link-new {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .nav-section-new {
        display: none;
    }
    
    .mobile-toggle-new {
        display: block;
    }
}

@media (max-width: 767px) {
    .topbar-new {
        padding: 6px 0;
    }
    
    .topbar-content-new {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info-new {
        gap: 15px;
        justify-content: center;
    }
    
    .address-item-new {
        display: none;
    }
    
    .mainbar-new {
        padding: 12px 0;
    }
    
    .logo-img-new {
        height: 40px;
    }
}

@media (max-width: 575px) {
    .contact-info-new {
        flex-direction: column;
        gap: 8px;
    }
    
    .welcome-text-new {
        display: none;
    }
}

/* Static Banner Styles */
.static-banner_area {
    margin: 30px 0;
}

.static-banner-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Different heights for different positions */
.top-banner .static-banner-image {
    min-height: 500px;
}

.middle-banner .static-banner-image {
    min-height: 400px;
}

.bottom-banner .static-banner-image {
    min-height: 300px;
}

/* Style variations */
.static-banner-content {
    position: absolute;
    padding: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.new-price {
    color: #e74c3c;
    font-weight: bold;
}

/* Unique styles for the first section */
.section-one-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f9f9f9;
}
.section-one-image {
  flex: 1 1 40%;
  max-width: 40%;
  padding: 10px;
}
.section-one-content {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 10px;
}
.section-one-title {
  color: #ea9c02;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-one-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-one-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.section-one-button {
  background: linear-gradient(to right, #d4af37, #d4af37);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

/* Unique styles for the second section */
.section-two-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
}
.section-two-content {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 10px;
}
.section-two-image {
  flex: 1 1 40%;
  max-width: 40%;
  padding: 10px;
  text-align: center;
}
.section-two-title {
  color: #ea9c02;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-two-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-two-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.feature-item {
  flex: 1 1 45%;
  max-width: 45%;
  margin-bottom: 20px;
  text-align: center;
}
.feature-icon {
  font-size: 24px;
  color: #6c63ff;
  margin-bottom: 10px;
}
.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.feature-text {
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-one-image, .section-one-content,
  .section-two-content, .section-two-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Fallback styles for custom gold colors if Tailwind doesn't load */
.text-gold { 
    color: #d4af37 !important; 
}
.bg-gold { 
    background-color: #d4af37 !important; 
}
.border-gold { 
    border-color: #d4af37 !important; 
}
.hover\:text-gold:hover { 
    color: #d4af37 !important; 
}
.hover\:bg-gold\/10:hover { 
    background-color: rgba(212, 175, 55, 0.1) !important; 
}
.focus\:ring-gold:focus { 
    --tw-ring-color: #d4af37 !important; 
}

/* Force header visibility */
header {
    display: block !important;
    position: relative !important;
    z-index: 999 !important;
    background: white !important;
}

/* Debug: Make header visible with red border */
header.relative {
    border: 2px solid red !important;
    min-height: 80px !important;
    background: lightblue !important;
}
