/* ========================================
   HEADER NAVIGATION STYLES
   ======================================== */

/* Main Header Container */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Scrolled State */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Header Container */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.header-logo a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-logo h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* Active Link Indicator */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #3498db;
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Header CTA Button */
.header-cta {
    display: flex;
    align-items: center;
}

.btn-header-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-header-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
    background: var(--orange);
}

.btn-header-primary i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn-header-primary .cta-text {
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}


.mobile-menu-toggle.active {
	opacity: 0 !important;
}
.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.mobile-logo {
	width: 200px;
	margin-left: -6px;
}
.mobile-logo h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    color: #e74c3c;
    transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-link i {
    font-size: 1.3rem;
    color: var(--orange);
    min-width: 24px;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(52, 152, 219, 0.1);
    padding-left: 2rem;
}

/* Mobile CTA */
.mobile-cta {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 2px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.btn-mobile-primary,
.btn-mobile-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-mobile-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-mobile-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-mobile-secondary {
    background: white;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-mobile-secondary:hover {
    background: #3498db;
    color: white;
}

.btn-mobile-primary i,
.btn-mobile-secondary i {
    font-size: 1.2rem;
}

/* Mobile Contact Info */
.mobile-contact-info {
    padding: 1.5rem;
    background: #f8f9fa;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.mobile-contact-item i {
    color: #3498db;
    font-size: 1.2rem;
    min-width: 24px;
}

.mobile-contact-item a {
    color: #2c3e50;
    text-decoration: none;
    word-break: break-all;
}

.mobile-contact-item a:hover {
    color: #3498db;
}


/* Tablet */
@media (max-width: 1024px) {
	
    .header-container {
        padding: 1rem 1.5rem;
        margin-left: 72px;
    }
    .header-logo {
	    display: block;
	    margin: auto;
	    width: 100%;
	    position: relative;
    }
    .header-logo > a > img {
		margin: auto;
		display: block;
		height: 65px;
	}
    
    .nav-link {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link i {
        font-size: 1.3rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .header-logo h1 {
        font-size: 1.2rem;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Add spacing to prevent content from going under fixed header */
body {
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

section.section-padding,preserve-aspect-ratio {
	background-position: center center;
    background-size: cover;
    min-height: clamp(500px, 60vh, 660px) !important;
}
.w-layout-blockcontainer {
	
}