/* Core Styling */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background-color: #f9f9f9; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
header { background: #002b5c; color: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; }
.logo span { color: #00a8ff; margin-left: 5px; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 600; }

/* Hero */
.hero { 
    background: linear-gradient(rgba(0,43,92,0.75), rgba(0,43,92,0.75)), 
                url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=1200&q=80');
    background-size: cover; background-position: center;
    color: #fff; text-align: center; padding: 100px 0;
}
.hero h1 { font-size: 3.2rem; margin-bottom: 10px; }
.hero-badges { margin-bottom: 25px; font-weight: 600; color: #00a8ff; }
.btn { background: #00a8ff; color: white; padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: 700; display: inline-block; }

/* Content Sections */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #002b5c; }
.services-bg { background: #eef2f6; }

/* Grid & Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.inventory-item { padding: 0; overflow: hidden; }
.inventory-item img { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 20px; }
.price { display: block; font-size: 1.4rem; font-weight: 700; color: #00a8ff; margin-top: 10px; }

/* Info Card */
.info-card { background: #002b5c; color: white; padding: 40px; border-radius: 10px; text-align: center; }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.btn-submit { background: #002b5c; color: #fff; width: 100%; padding: 15px; border: none; border-radius: 4px; cursor: pointer; font-weight: 700; }
.location-details { margin-top: 20px; padding: 20px; background: #fff; border-left: 4px solid #00a8ff; }

/* Footer */
footer { background: #111; color: #888; text-align: center; padding: 50px 0; }

/* Responsive */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
}