/* assets/css/tanker-enhanced.css - FINAL ENHANCED STYLES */

/* ===== CUSTOM ANIMATED BACKGROUND ===== */
/* ===== CUSTOM ANIMATED BACKGROUND ===== */
body.tanker-page {
    /* First, try a simple solid color to test */
    background-color: #0a1a2d !important;
    
    /* Then add your background image */
    background-image: url('') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
    position: relative !important;
    overflow-x: hidden !important;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%, center center; }
    50% { background-position: 100% 50%, center center; }
    100% { background-position: 0% 50%, center center; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animated ocean waves overlay */
body.tanker-page::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 20% 80%, rgba(76, 201, 240, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 20%, rgba(67, 97, 238, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 40% 40%, rgba(247, 37, 133, 0.03) 0%, transparent 30%) !important;
    z-index: -1 !important;
    animation: floatWaves 15s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes floatWaves {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

/* ===== UNIQUE HEADER - DARK TRANSPARENT WITH GLASS EFFECT ===== */
header {
    background: linear-gradient(to bottom, 
        rgba(10, 26, 45, 0.95) 0%,
        rgba(10, 26, 45, 0.85) 100%) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    border-bottom: 1px solid rgba(76, 201, 240, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    height: 80px !important;
}

/* Remove white background on scroll */
.background-header {
    background: rgba(10, 26, 45, 0.98) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) saturate(200%) !important;
}

/* Logo styling - Gradient marine theme */
.navbar-brand h2 {
    background: linear-gradient(45deg, 
        #4cc9f0 0%,
        #4361ee 50%,
        #f72585 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    font-size: 26px !important;
    position: relative !important;
}

.navbar-brand h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, 
        transparent 0%,
        #4cc9f0 50%,
        transparent 100%) !important;
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
}

.navbar-brand h2:hover::after {
    transform: scaleX(1) !important;
}

.navbar-brand h2 em {
    font-style: normal !important;
    background: linear-gradient(45deg, #f72585, #7209b7) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: 0 0 20px rgba(247, 37, 133, 0.3) !important;
}

/* Navigation links - Modern button style */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    margin: 0 8px !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    background: rgba(255, 255, 255, 0.05) !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
}

.navbar-nav .nav-link::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(76, 201, 240, 0.2) 50%,
        transparent 100%) !important;
    transition: left 0.6s ease !important;
}

.navbar-nav .nav-link:hover::before {
    left: 100% !important;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, 
        rgba(67, 97, 238, 0.2) 0%,
        rgba(76, 201, 240, 0.2) 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3),
                0 5px 15px rgba(76, 201, 240, 0.2) !important;
    border-color: rgba(76, 201, 240, 0.3) !important;
}

/* Active nav item with glowing effect */
.navbar-nav .nav-item.active .nav-link {
    background: linear-gradient(135deg, 
        #4361ee 0%,
        #4cc9f0 100%) !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4),
                0 0 20px rgba(76, 201, 240, 0.3) !important;
    border-color: transparent !important;
    animation: pulseGlow 2s infinite alternate !important;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4),
                    0 0 20px rgba(76, 201, 240, 0.3);
    }
    to {
        box-shadow: 0 10px 40px rgba(67, 97, 238, 0.6),
                    0 0 30px rgba(76, 201, 240, 0.5);
    }
}

/* ===== ENHANCED BANNER SECTION ===== */

@keyframes titleGlow {
    from {
        text-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    to {
        text-shadow: 0 20px 40px rgba(67, 97, 238, 0.6),
                     0 0 30px rgba(76, 201, 240, 0.4);
    }
}

/* ===== ENHANCED FILTERS - FLOATING GLASS CARDS ===== */
.filters {
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    border-radius: 25px !important;
    padding: 25px 30px !important;
    margin: 50px auto 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.filters::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, 
        rgba(76, 201, 240, 0.05) 0%,
        rgba(67, 97, 238, 0.05) 100%) !important;
    z-index: -1 !important;
}

.filters:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(76, 201, 240, 0.4) !important;
}

.filters ul {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.filters ul li {
    list-style: none !important;
    padding: 15px 35px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    backdrop-filter: blur(5px) !important;
}

.filters ul li::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(76, 201, 240, 0.3) 50%,
        transparent 100%) !important;
    transition: left 0.6s ease !important;
}

.filters ul li:hover::before {
    left: 100% !important;
}

.filters ul li:hover {
    background: linear-gradient(135deg, 
        rgba(67, 97, 238, 0.3) 0%,
        rgba(76, 201, 240, 0.3) 100%) !important;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.3),
                0 5px 15px rgba(67, 97, 238, 0.2) !important;
    border-color: rgba(76, 201, 240, 0.5) !important;
}

.filters ul li.active {
    background: linear-gradient(135deg, 
        #4361ee 0%,
        #4cc9f0 100%) !important;
    color: white !important;
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.5),
                0 0 25px rgba(76, 201, 240, 0.4) !important;
    border-color: transparent !important;
    animation: filterPulse 2s infinite alternate !important;
}

@keyframes filterPulse {
    from {
        box-shadow: 0 15px 35px rgba(67, 97, 238, 0.5),
                    0 0 25px rgba(76, 201, 240, 0.4);
    }
    to {
        box-shadow: 0 20px 45px rgba(67, 97, 238, 0.7),
                    0 0 35px rgba(76, 201, 240, 0.6);
    }
}

/* ===== ENHANCED PRODUCT GRID ===== */
.products {
    padding: 40px 0 80px !important;
    position: relative !important;
}

.row.grid {
    animation: gridFloat 8s ease-in-out infinite !important;
    position: relative !important;
}

@keyframes gridFloat {
    0%, 100% { transform: translateY(0); }
    33% { transform: translateY(-10px); }
    66% { transform: translateY(10px); }
}

/* Card container */
.filters-content {
    position: relative !important;
    padding: 20px !important;
}

/* ===== ENHANCED PAGINATION ===== */
.pages {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 60px !important;
    padding: 20px !important;
}

.pages li {
    list-style: none !important;
}

.pages li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
    font-size: 16px !important;
    backdrop-filter: blur(10px) !important;
}

.pages li a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, 
        rgba(76, 201, 240, 0.2) 0%,
        rgba(67, 97, 238, 0.2) 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.pages li a:hover::before {
    opacity: 1 !important;
}

.pages li a:hover {
    background: linear-gradient(135deg, 
        rgba(67, 97, 238, 0.3) 0%,
        rgba(76, 201, 240, 0.3) 100%) !important;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.1) rotate(5deg) !important;
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.4),
                0 5px 15px rgba(67, 97, 238, 0.3) !important;
    border-color: rgba(76, 201, 240, 0.5) !important;
}

.pages li.active a {
    background: linear-gradient(135deg, 
        #4361ee 0%,
        #4cc9f0 100%) !important;
    color: white !important;
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.6),
                0 0 25px rgba(76, 201, 240, 0.5) !important;
    transform: scale(1.1) rotate(-5deg) !important;
    animation: pagePulse 2s infinite alternate !important;
}

@keyframes pagePulse {
    from {
        box-shadow: 0 15px 35px rgba(67, 97, 238, 0.6),
                    0 0 25px rgba(76, 201, 240, 0.5);
    }
    to {
        box-shadow: 0 20px 45px rgba(67, 97, 238, 0.8),
                    0 0 35px rgba(76, 201, 240, 0.7);
    }
}

.pages li a i {
    transition: transform 0.5s ease !important;
}

.pages li a:hover i {
    transform: rotate(360deg) !important;
}

/* ===== ENHANCED FOOTER ===== */
footer {
    background: linear-gradient(to top, 
        rgba(10, 26, 45, 0.98) 0%,
        rgba(10, 26, 45, 0.9) 100%) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    border-top: 1px solid rgba(76, 201, 240, 0.2) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    padding: 50px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, 
        transparent 0%,
        #4cc9f0 25%,
        #4361ee 50%,
        #f72585 75%,
        transparent 100%) !important;
}

.inner-content {
    position: relative !important;
    z-index: 2 !important;
}

.inner-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px !important;
    transition: color 0.3s ease !important;
    margin: 0 !important;
}

.inner-content p:hover {
    color: #ffffff !important;
}

.inner-content a {
    color: #4cc9f0 !important;
    text-decoration: none !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
}

.inner-content a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #4cc9f0, #4361ee) !important;
    transition: width 0.3s ease !important;
}

.inner-content a:hover::after {
    width: 100% !important;
}

.inner-content a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(76, 201, 240, 0.5) !important;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 12px !important;
    height: 12px !important;
}

::-webkit-scrollbar-track {
    background: rgba(10, 26, 45, 0.8) !important;
    border-radius: 6px !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4361ee, #4cc9f0) !important;
    border-radius: 6px !important;
    border: 2px solid rgba(10, 26, 45, 0.8) !important;
    transition: all 0.3s ease !important;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f72585, #4361ee) !important;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.5) !important;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    body.tanker-page {
        background-attachment: scroll !important;
        background-size: 400% 400%, cover !important;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 20px !important;
        margin: 5px 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .navbar-brand h2 {
        font-size: 22px !important;
    }
    
    .page-heading.products-heading {
        min-height: 40vh !important;
        margin-top: 70px !important;
    }
    
    .text-content h2 {
        font-size: 2.2rem !important;
    }
    
    .filters ul li {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
    
    .filters {
        padding: 20px !important;
        margin: 30px auto !important;
    }
    
    .pages li a {
        width: 45px !important;
        height: 45px !important;
        font-size: 14px !important;
    }
}