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

/* Smooth Page Transitions */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    /* 30% LIGHTER BACKGROUND - Increased opacity from 0.90-0.95 to 0.65-0.70 */
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.65) 0%, rgba(22, 33, 62, 0.62) 30%, rgba(15, 52, 96, 0.60) 70%, rgba(25, 118, 210, 0.58) 100%),
        url('/images/bne-websitebackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #333;
    position: relative;
    /* Smooth fade-in on page load */
    animation: fadeInPage 0.5s ease-in;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* LIGHTER Animated background pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Made 30% lighter by reducing opacity */
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(25, 118, 210, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

header {
    /* 30% LIGHTER HEADER - Increased opacity from 0.90-0.95 to 0.65-0.70 */
    background-image: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.70) 0%, rgba(25, 118, 210, 0.67) 50%, rgba(33, 150, 243, 0.65) 100%),
        url('/images/bne-websitebackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,102,204,0.3);
    border-bottom: 5px solid #1976d2;
    position: relative;
    overflow: hidden;
    /* Smooth entrance animation */
    animation: slideDownHeader 0.6s ease-out;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header accent stripes */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #0066cc, #1976d2, #2196F3, #42A5F5, #2196F3, #1976d2, #0066cc);
    background-size: 200% 100%;
    animation: slideGradient 3s linear infinite;
    z-index: 2;
}

@keyframes slideGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Diagonal accent overlay - LIGHTER */
header::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header p {
    color: rgba(255,255,255,0.98);
    font-size: 1.15rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    background: rgba(0, 102, 204, 0.3);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* Experience Badge with animation */
.experience-badge {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background: linear-gradient(135deg, white 0%, #f0f8ff 100%);
    color: #0066cc;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 0 4px white, 0 0 0 6px #0066cc;
    border: 3px solid white;
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 0 4px white, 0 0 0 6px #0066cc;
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 28px rgba(0,0,0,0.7), 0 0 0 5px white, 0 0 0 8px #1976d2;
    }
}

.experience-badge .years {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #0066cc, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #0066cc;
    margin-top: 0.25rem;
}

.logo {
    height: 110px;
    margin-bottom: 1rem;
    filter: drop-shadow(4px 4px 12px rgba(0,0,0,0.8));
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

nav {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    flex-wrap: wrap;
    border-bottom: 4px solid #0066cc;
    position: relative;
    z-index: 10;
    /* Smooth slide-in animation */
    animation: slideInNav 0.6s ease-out 0.3s both;
}

@keyframes slideInNav {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #1976d2, #2196F3, #1976d2, #0066cc);
    background-size: 200% 100%;
    animation: slideGradient 3s linear infinite;
}

.nav-btn {
    background: linear-gradient(135deg, #0066cc 0%, #1976d2 100%);
    color: white;
    padding: 1rem 2.75rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,102,204,0.4);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

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

.nav-btn:hover {
    background: linear-gradient(135deg, #1976d2 0%, #2196F3 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 16px rgba(25,118,210,0.5);
    border-color: #64B5F6;
}

.nav-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Filter Buttons */
.filter-btn {
    padding: 0.7rem 1.75rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f8f8 100%);
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #d8d8d8;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.filter-btn:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #e8e8e8 100%);
    transform: translateY(-2px);
    border-color: #0066cc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0066cc 0%, #1976d2 100%);
    color: white;
    border-color: #1976d2;
    box-shadow: 0 4px 12px rgba(0,102,204,0.4);
    transform: translateY(-2px);
}

.content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 3rem;
    /* 30% LIGHTER CONTENT BACKGROUND */
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 253, 254, 0.97) 100%),
        url('/images/bne-websitebackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    border-top: 6px solid #0066cc;
    border-left: 3px solid #90CAF9;
    position: relative;
    overflow: hidden;
    /* Smooth fade-in */
    animation: fadeInContent 0.6s ease-out 0.4s both;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(25,118,210,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.content h2 {
    color: #0066cc;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 4px solid #0066cc;
    padding-bottom: 0.75rem;
    position: relative;
    background: linear-gradient(135deg, #0066cc, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #2196F3);
    border-radius: 2px;
}

.content h3 {
    color: #1976d2;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.content p {
    line-height: 1.9;
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: justify;
}

.content ul {
    margin-left: 2rem;
    line-height: 2;
}

.content li {
    color: #4a5568;
    font-size: 1.05rem;
}

.content strong {
    color: #0066cc;
    font-weight: 700;
}

/* Info Boxes - LIGHTER */
.info-box {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.98) 0%, rgba(225, 242, 255, 0.96) 100%);
    border-radius: 10px;
    border-left: 6px solid #0066cc;
    box-shadow: 0 6px 16px rgba(0,102,204,0.12);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* Products Page */
.products {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    /* Staggered fade-in animation */
    animation: fadeInContent 0.6s ease-out 0.4s both;
}

.product-card {
    /* 30% LIGHTER PRODUCT CARDS */
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 253, 254, 0.97) 100%),
        url('/images/bne-websitebackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 6px solid #0066cc;
    border-left: 4px solid #90CAF9;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(25,118,210,0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.product-card:hover::before {
    top: -25%;
    right: -25%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0,102,204,0.25);
    border-top-color: #1976d2;
    border-left-color: #2196F3;
}

.product-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid #E3F2FD;
    padding-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.product-card p {
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.product-card strong {
    color: #2d3748;
    font-weight: 700;
}

.product-card .category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.price {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

/* Form Section - LIGHTER */
.form-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 253, 254, 0.97) 100%),
        url('/images/bne-websitebackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    border-top: 6px solid #0066cc;
    border-right: 3px solid #90CAF9;
    position: relative;
    overflow: hidden;
    animation: fadeInContent 0.6s ease-out 0.4s both;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(25,118,210,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.form-section h2 {
    color: #0066cc;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 4px solid #0066cc;
    padding-bottom: 1rem;
    position: relative;
}

.form-section h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #2196F3);
    border-radius: 2px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    /* SMOOTH TRANSITIONS */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 4px rgba(25,118,210,0.12);
    background: rgba(252, 253, 254, 0.99);
    transform: translateY(-1px);
}

select {
    cursor: pointer;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button[type="submit"] {
    background: linear-gradient(135deg, #0066cc 0%, #1976d2 100%);
    color: white;
    padding: 1.3rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(0,102,204,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

button[type="submit"]:hover::before {
    left: 100%;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #1976d2 0%, #2196F3 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(25,118,210,0.5);
}

button[type="submit"]:active {
    transform: translateY(-1px) scale(0.98);
}

/* Feature Cards - LIGHTER */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.98) 0%, rgba(225, 242, 255, 0.96) 100%);
    border-radius: 10px;
    border-top: 5px solid #0066cc;
    box-shadow: 0 6px 16px rgba(0,102,204,0.12);
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    top: -25%;
    right: -25%;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 24px rgba(0,102,204,0.2);
    border-top-color: #1976d2;
}

.feature-card h3 {
    color: #0066cc;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #1976d2 50%, #2196F3 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,102,204,0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInContent 0.6s ease-out 0.6s both;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.cta-section p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin: 0.5rem;
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 2px solid white;
}

.cta-btn:hover {
    background: #f0f8ff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.cta-btn.secondary {
    background: #2d3748;
    color: white;
    border-color: #2d3748;
}

.cta-btn.secondary:hover {
    background: #1a202c;
    border-color: #1a202c;
}

/* Contact Cards - LIGHTER */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.98) 0%, rgba(225, 242, 255, 0.96) 100%);
    border-radius: 12px;
    border-top: 6px solid #0066cc;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,102,204,0.12);
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 28px rgba(0,102,204,0.2);
    border-top-color: #1976d2;
}

.contact-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    color: #0066cc;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.contact-card .contact-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    position: relative;
    z-index: 1;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    /* SMOOTH TRANSITIONS */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.98) 0%, rgba(45, 55, 72, 0.98) 100%);
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
    border-top: 5px solid #0066cc;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeInContent 0.6s ease-out 0.7s both;
}

footer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #1976d2, #2196F3, #1976d2, #0066cc);
    background-size: 200% 100%;
    animation: slideGradient 3s linear infinite;
}

footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

footer strong {
    color: #64B5F6;
}

/* Alert Messages */
.alert {
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideInAlert 0.4s ease-out;
}

@keyframes slideInAlert {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    background: rgba(212, 237, 218, 0.95);
    color: #155724;
    border: 1px solid #c3e6cb;
    border-left: 5px solid #28a745;
}

.alert-error {
    background: rgba(248, 215, 218, 0.95);
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-left: 5px solid #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    header {
        background-attachment: scroll;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .experience-badge {
        position: relative;
        margin: 0 auto 1.5rem;
        right: 0;
        top: 0;
    }
    
    header p {
        font-size: 1rem;
    }
    
    nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-btn {
        text-align: center;
    }
    
    .products {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .content,
    .form-section {
        margin: 1.5rem;
        padding: 2rem;
    }
    
    .content h2 {
        font-size: 1.75rem;
    }
    
    .feature-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-btn {
        display: block;
        margin: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.85rem;
    }
}

/* Smooth scrolling for internal links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Page transition effect - add this class to body via JavaScript */
.page-transitioning {
    animation: fadeOutPage 0.3s ease-out forwards;
}

@keyframes fadeOutPage {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/* HERO SECTION */

.hero {

    height: 65vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: white;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('/images/bne-websitebackground.jpg');

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {

    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {

    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {

    padding: 1rem 2rem;

    background: #1976d2;

    color: white;

    text-decoration: none;

    font-weight: 600;

    border-radius: 6px;

    transition: all 0.25s ease;
}

.hero-btn:hover {

    background: #0d47a1;

    transform: translateY(-2px);
}

.hero-btn.secondary {

    background: transparent;
    border: 2px solid white;
}

.hero-btn.secondary:hover {

    background: white;
    color: #1976d2;
}