/* --- Global Reset & Variables --- */
:root {
    --primary: #0b3c71;
    --accent: #f4b41a;
    --accent-hover: #d19a16;
    --dark: #0a0a0a;
    --light: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- Premium Navigation Effects --- */
.nav-link {
    position: relative;
    color: var(--primary);
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Hero & Glassmorphism --- */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.hero-zoom {
    overflow: hidden;
}

.hero-zoom img {
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

/* --- Product Section Hero Styling --- */
.product-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 15%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.overlay-right {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.95) 15%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    display: inline-block;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 60, 113, 0.1);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-accent:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* --- Modern Animations --- */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* --- Form Styling --- */
input, textarea {
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.1);
    outline: none;
}

/* --- Footer --- */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .product-section {
        height: auto;
        padding: 100px 0;
    }
    .overlay, .overlay-right {
        background: rgba(0,0,0,0.7);
    }
}


/* Container for the menu items */
.nav-menu-main li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Base style for the links */
.nav-menu-main li a {
    color: #0b3c71; /* Your Dark Blue */
    text-decoration: none;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* The Animated Underline (Invisible by default) */
.nav-menu-main li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ca8a04; /* Yellow-600 */
    transition: width 0.3s ease-in-out;
}

/* Hover Effect: Underline slides out */
.nav-menu-main li a:hover {
    color: #ca8a04;
}

.nav-menu-main li a:hover::after {
    width: 100%;
}

/* ACTIVE STATE: Keeps underline visible on current page */
/* WordPress automatically adds 'current-menu-item' to the <li> */
.nav-menu-main li.current-menu-item a {
    color: #ca8a04;
}

.nav-menu-main li.current-menu-item a::after {
    width: 100%;
}


/* Mobile Menu Active State */
.mobile-menu-open {
    transform: translateX(0) !important;
}
