/* ============================================
   ENHANCED NAVBAR & HEADER STYLES
   ============================================ */

/* Modern Navbar with Logo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 2px solid #3b82f6;
}

.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Enhanced Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    border: 3px solid #3b82f6;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 5px;
    transition: all 0.3s ease;
}

.header.scrolled .logo-image-wrapper {
    width: 55px;
    height: 55px;
}

.logo-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: logo-shine 3s infinite;
}

@keyframes logo-shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(3deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-company-name {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 12px;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
}

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

.nav-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Contact CTA Button in Nav */
.nav-cta {
    margin-left: 1rem;
}

.nav-cta .btn {
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.nav-cta .btn i {
    animation: pulse-phone 2s infinite;
}

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

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Enhanced Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #f59e0b 100%);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 90px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 2rem;
}

.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.breadcrumb-custom a:hover {
    opacity: 0.7;
}

.breadcrumb-custom i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Company Image Section */
.company-showcase {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.company-image-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
    background: white;
    animation: float 6s ease-in-out infinite;
}

.company-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: rotate(45deg);
    animation: image-shine 5s infinite;
}

@keyframes image-shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.company-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.company-image-wrapper:hover .company-image {
    transform: scale(1.05);
}

.company-image-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Top Info Bar */
.top-info-bar {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.top-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.top-info-item i {
    color: #f59e0b;
}

.top-info-item a {
    color: white;
    text-decoration: none;
}

.top-social-links {
    display: flex;
    gap: 10px;
}

.top-social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-social-link:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 110px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.15);
        transition: left 0.4s ease;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 20px;
        justify-content: flex-start;
        border-radius: 12px;
        margin-bottom: 8px;
    }
    
    .nav-cta {
        margin-left: 0;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-company-name {
        font-size: 1.2rem;
    }
    
    .logo-image-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .top-info-content {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-company-name {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .top-info-bar {
        font-size: 0.8rem;
    }
}

