/* css/style.css */
:root {
    --primary-navy: #1e3a8a;
    --primary-dark: #0f172a;
    --accent-amber: #d97706;
    --accent-light: #fef3c7;
    --neutral-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --secondary: #f5821c;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.navbar-brand {
    font-weight: 800;
    color: var(--primary-navy) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-amber) !important;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 16px;
}
.dropdown-item {
    font-weight: 500;
    padding: 0.6rem 1.2rem;
}
.dropdown-item:hover {
    background: #fef3c7;
    color: var(--primary-navy);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 138, 0.88)), 
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 160px 0 110px;
    color: #ffffff;
}
.hero-badge {
    background-color: var(--accent-amber);
    color: #ffffff;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    padding: 80px 0 50px;
    color: white;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--accent-amber);
    position: absolute;
    bottom: -12px;
    left: 0;
    border-radius: 2px;
}
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Product Cards */
.product-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    border-color: var(--accent-amber);
}
.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent-amber);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

/* Feature Box */
.feature-box {
    padding: 30px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

/* Testimonials */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.testimonial-card::before {
    content: "\201C";
    font-size: 5rem;
    color: rgba(217, 119, 6, 0.15);
    position: absolute;
    top: 10px;
    right: 25px;
    font-family: Georgia, serif;
    line-height: 1;
}
.client-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.02);
    height: 100%;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
    border-radius: 24px;
    padding: 60px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    font-size: 0.95rem;
}
footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
}
footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}
footer a:hover {
    color: var(--accent-amber);
}
.address-box i {
    width: 28px;
    color: var(--accent-amber);
    font-size: 1.1rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 100px 0 70px; }
}

.btn-warning{
    background-color: var(--secondary) !important;
}