/* --- GLOBAL VARIABLES: QUANTUM COBALT --- */
:root {
    --primary-orange: #1d4ed8; 
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e3a8a 100%);
    --dark-charcoal: #0b0f19;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --text-main: #111827;
    --text-muted: #4b5563;
    --3d-shadow: 0 10px 20px rgba(29, 78, 216, 0.25), inset 0 -3px 0 rgba(0,0,0,0.2), inset 0 2px 0 rgba(255,255,255,0.3);
}

/* --- RESET & TYPOGRAPHY --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { color: var(--text-main); background-color: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 2.5rem; color: var(--dark-charcoal); margin-bottom: 20px; text-align: center; font-weight: 700; }
.section-title span { color: var(--primary-orange); }

/* --- HEADER & NAVIGATION --- */
header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.brand-logo { max-height: 50px; width: auto; object-fit: contain; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--dark-charcoal); display: flex; align-items: center; gap: 10px;}
.logo-icon { width: 40px; height: 40px; background: var(--primary-orange); clip-path: polygon(50% 0%, 0% 100%, 100% 100%); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-orange); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--dark-charcoal); transition: 0.3s; }

/* --- BUTTONS --- */
.btn { 
    padding: 15px 30px; background: var(--accent-gradient); color: var(--white); 
    font-weight: 700; text-transform: uppercase; border: none; border-radius: 4px; 
    cursor: pointer; box-shadow: var(--3d-shadow); transition: all 0.3s ease; display: inline-block; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 25px rgba(0,0,0,0.2), inset 0 -2px 0 rgba(0,0,0,0.1), inset 0 2px 0 rgba(255,255,255,0.4); filter: brightness(1.1); }
.btn:active { transform: translateY(2px); box-shadow: inset 0 3px 5px rgba(0,0,0,0.3); }

/* --- HERO SLIDER --- */
.hero { position: relative; height: 80vh; overflow: hidden; background: var(--dark-charcoal); }
.hero-track { display: flex; height: 100%; width: 300%; transition: transform 0.5s ease-in-out; }
.hero-slide { width: 33.333%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: var(--white); padding: 0 20px; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

/* --- ENTERPRISE SUB-PAGE HERO --- */
.page-hero { 
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(29, 78, 216, 0.8) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop') center/cover; 
    padding: 120px 0 80px 0; 
    text-align: center; 
    color: var(--white); 
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2);
}
.page-hero h1 { font-size: 3.5rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.page-hero .breadcrumb { color: rgba(255,255,255,0.7); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

/* --- GRIDS & CARDS --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; padding-bottom: 80px; }

/* Enterprise Service Blocks */
.service-card { 
    background: var(--white); padding: 50px 30px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; 
    border-bottom: 4px solid var(--primary-orange); position: relative;
    overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--accent-gradient); opacity: 0; transition: opacity 0.4s ease; z-index: 1; }
.service-card:hover { transform: translateY(-15px); box-shadow: var(--3d-shadow); }
.service-card:hover::before { opacity: 0.05; }
.service-card h3, .service-card p { position: relative; z-index: 2; }
.service-card h3 { margin-bottom: 15px; color: var(--dark-charcoal); font-size: 1.4rem; }

/* News / Blog Grid Fix */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; padding-bottom: 80px; }
.news-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.news-img { width: 100%; height: 200px; background: #ddd; }
.news-content { padding: 20px; }

/* Products Placeholders */
.prod-img-wrapper { width: 100%; aspect-ratio: 4/3; background-color: var(--light-bg); overflow: hidden; margin-bottom: 15px; border-radius: 4px; }
.prod-img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* Privacy / Terms 3D Box */
.policy-box { max-width: 900px; margin: -40px auto 80px auto; background: var(--white); padding: 60px; border-radius: 12px; box-shadow: var(--3d-shadow); border-top: 5px solid var(--primary-orange); position: relative; z-index: 10; }

/* Testimonials */
.testimonial-section { background: var(--light-bg); padding: 80px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 40px; }
.test-card { background: var(--white); padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); position: relative; border-left: 4px solid var(--primary-orange); }
.test-card::after { content: '"'; position: absolute; top: 20px; right: 30px; font-size: 5rem; color: rgba(29, 78, 216, 0.1); font-family: serif; line-height: 1; }

/* --- FORMS --- */
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 4px; font-family: 'Inter', sans-serif; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* --- FOOTER & LOGOS --- */
.client-logos { background: var(--white); padding: 40px 0; overflow: hidden; border-top: 1px solid #eee; }
.logo-track { display: flex; width: calc(200px * 10); animation: scroll 20s linear infinite; }
.logo-track img { width: 200px; height: 80px; object-fit: contain; padding: 0 30px; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; }
.logo-track img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-200px * 5)); } }
footer { background: var(--dark-charcoal); color: var(--white); padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.footer-col h4 { color: var(--primary-orange); margin-bottom: 20px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-logo { margin-bottom: 20px; filter: brightness(0) invert(1); }

/* Cookie Consent */
.cookie-consent { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--dark-charcoal); color: var(--white); padding: 20px; display: flex; justify-content: space-between; align-items: center; z-index: 9999; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform 0.5s ease-in-out; }
.cookie-consent.show { transform: translateY(0); }
.cookie-btn { background: var(--primary-orange); color: var(--white); border: none; padding: 10px 20px; cursor: pointer; font-weight: 600; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-grid, .footer-grid, .testimonial-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { position: absolute; right: 0; top: 80px; background: var(--white); flex-direction: column; width: 100%; text-align: center; gap: 0; display: none; }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 20px; border-bottom: 1px solid #eee; display: block; }
    .hamburger { display: flex; }
    .about-grid, .footer-grid, .testimonial-grid, .news-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
}