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

body {
    font-family: 'Roboto', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1d1e20;
    background: #f4f5ff;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: #0d6efd; }
a:hover { color: #0a58ca; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* Top Bar */
.top-bar {
    background: #0b2447;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container { display: flex; justify-content: flex-end; gap: 20px; }
.top-bar a { color: #fff; }

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
.logo img { height: 50px; }

nav ul { display: flex; gap: 5px; }
nav ul li { position: relative; }
nav ul li a {
    display: block;
    padding: 10px 16px;
    color: #1d1e20;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}
nav ul li a:hover { color: #0b2447; }
nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 999;
}
nav ul li:hover .dropdown { display: block; }
nav ul li .dropdown a { padding: 10px 18px; font-weight: 400; border-bottom: 1px solid #f0f0f0; }
nav ul li .dropdown a:hover { background: #f8f9fa; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #0b2447 0%, #1a3a6b 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.hero h1 { font-size: 42px; margin-bottom: 20px; }
.hero p { font-size: 18px; max-width: 700px; margin: 0 auto; opacity: 0.9; }
.hero .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: #e8a838;
    color: #1d1e20;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}
.hero .btn:hover { background: #d4982e; }

/* Section */
section { padding: 60px 0; }
section h2 { font-size: 32px; text-align: center; margin-bottom: 15px; color: #0b2447; }
section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e8a838;
    margin: 10px auto 20px;
}
section .subtitle { text-align: center; font-size: 16px; color: #6c757d; margin-bottom: 40px; }

/* About Section */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Showcase Grid */
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.showcase-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.showcase-card:hover { transform: translateY(-5px); }
.showcase-card img { width: 100%; height: 200px; object-fit: cover; }
.showcase-card .card-body { padding: 20px; }
.showcase-card h3 { font-size: 18px; margin-bottom: 10px; color: #0b2447; }

/* Location Grid */
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; }
.location-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.location-card h3 { font-size: 16px; color: #0b2447; margin-bottom: 5px; }
.location-card p { font-size: 13px; color: #6c757d; }

/* Category Pills */
.categories { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.category-pill {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 500;
    color: #1d1e20;
    transition: all 0.3s;
}
.category-pill:hover { background: #0b2447; color: #fff; border-color: #0b2447; }

/* Gallery Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* Stats */
.stats-section { background: #0b2447; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number { font-size: 36px; font-weight: 700; }
.stat-label { font-size: 14px; opacity: 0.8; }

/* Instagram */
.instagram-section { background: #fff; }
.instagram-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }

/* Blog Section */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .blog-body { padding: 20px; }
.blog-card .blog-meta { font-size: 12px; color: #6c757d; margin-bottom: 8px; }
.blog-card .blog-cat { color: #e8a838; font-weight: 600; text-transform: uppercase; font-size: 11px; letter-spacing: 1px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: #495057; }

/* Testimonials */
.testimonials-section { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.testimonial-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    position: relative;
}
.testimonial-card .quote { font-style: italic; margin-bottom: 15px; font-size: 15px; }
.testimonial-card .author { font-weight: 600; color: #0b2447; }

/* Quote Form */
.quote-section { background: #f8f9fa; }
.quote-form { max-width: 600px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.form-group textarea { height: 100px; resize: vertical; }
.btn-submit {
    background: #e8a838;
    color: #1d1e20;
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}
.btn-submit:hover { background: #d4982e; }

/* Footer */
footer {
    background: #0b2447;
    color: #fff;
    padding: 50px 0 0;
}
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 30px; }
footer h4 { font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
footer h4:after { content: ''; display: block; width: 30px; height: 2px; background: #e8a838; margin-top: 8px; }
footer p { font-size: 14px; opacity: 0.8; line-height: 1.8; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: #fff; opacity: 0.8; font-size: 14px; transition: opacity 0.3s; }
footer ul li a:hover { opacity: 1; }
footer .social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    color: #fff;
    transition: background 0.3s;
}
footer .social a:hover { background: #e8a838; }
.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0b2447, #1a3a6b);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-header h1 { font-size: 36px; margin-bottom: 10px; }
.page-header p { opacity: 0.9; }

/* Product Categories */
.product-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-5px); }
.product-card .icon { font-size: 40px; margin-bottom: 15px; }
.product-card h3 { font-size: 18px; color: #0b2447; margin-bottom: 10px; }
.product-card p { font-size: 14px; color: #6c757d; }

/* Page Content */
.page-content { background: #fff; padding: 50px 0; }
.page-content p { margin-bottom: 15px; font-size: 15px; line-height: 1.8; }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.value-card { background: #fff; padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.value-card h3 { color: #0b2447; margin-bottom: 10px; }

/* Portfolio page */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.portfolio-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.portfolio-item .item-body { padding: 25px; }
.portfolio-item h3 { color: #0b2447; margin-bottom: 10px; font-size: 20px; }
.portfolio-item p { font-size: 14px; color: #495057; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 { color: #0b2447; margin-bottom: 15px; }
.contact-info p { margin-bottom: 10px; }
.showroom-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.showroom-card { background: #f8f9fa; border-radius: 8px; padding: 25px; }
.showroom-card h3 { color: #0b2447; margin-bottom: 10px; font-size: 16px; }
.showroom-card p { font-size: 14px; color: #495057; margin-bottom: 5px; }

/* Brand section */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; align-items: center; }
.brand-logo { background: #fff; padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

/* Tagline strip */
.tagline-strip {
    background: #e8a838;
    padding: 20px 0;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    word-spacing: 15px;
}

/* Blog page */
.blog-main { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.blog-post { background: #fff; border-radius: 8px; padding: 30px; margin-bottom: 25px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.blog-post .post-meta { font-size: 13px; color: #6c757d; margin-bottom: 10px; }
.blog-post h2 { text-align: left; font-size: 24px; }
.blog-post h2:after { margin: 10px 0; }
.blog-post p { font-size: 15px; color: #495057; line-height: 1.8; }
.blog-sidebar .widget { background: #fff; border-radius: 8px; padding: 25px; margin-bottom: 25px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.blog-sidebar h3 { font-size: 18px; color: #0b2447; margin-bottom: 15px; }

/* Post page */
.post-content { max-width: 800px; margin: 0 auto; }

/* Solutions */
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.solution-card { background: #fff; border-radius: 8px; padding: 35px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.solution-card .icon { font-size: 48px; margin-bottom: 15px; }
.solution-card h3 { color: #0b2447; margin-bottom: 10px; }

/* Responsive */
@media (max-width: 991px) {
    footer .container { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-main { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    nav ul { flex-direction: column; display: none; }
    nav.active ul { display: flex; }
    .hero h1 { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    footer .container { grid-template-columns: 1fr; }
}
