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

body {
    font-family: Arial, sans-serif;
}

/* ── SHARED HEADER ── */
.header {
    background-color: #5f2e47;
    padding: 20px;
    text-align: center;
    color: white;
}
.header h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}
.header p {
    font-size: 15px;
    margin-top: 6px;
    opacity: 0.85;
}

/* ── SHARED NAV ── */
.nav {
    background-color: #333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.nav a {
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    font-size: 15px;
    display: inline-block;
    transition: background 0.2s;
}
.nav a:hover {
    background-color: #575757;
}

/* ── SHARED FOOTER ── */
.footer-bar {
    background-color: #5f2e47;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    margin-bottom: 60px;
}

/* ── SHARED BOTTOM NAVIGATION ── */
.navigation {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #f1f1f1;
}
.navigation a {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}
.navigation a.previous { background-color: #4CAF50; }
.navigation a.next { background-color: #667eea; }
.navigation a:hover { opacity: 0.8; }

/* ── INDEX PAGE ── */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1600&q=80') center/cover no-repeat;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 40px 20px;
    text-align: center;
}
.hero h2 { color: white; font-size: 30px; font-weight: 700; }
.hero p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 500px; }
.hero-btn {
    background-color: #b00b5d;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
}
.hero-btn:hover { background-color: #900948; }
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px 20px 20px;
    background: #f9f9f9;
}
.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 24px;
    width: 200px;
    text-align: center;
}
.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #5f2e47;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon svg { width: 22px; height: 22px; fill: white; }
.card h3 { font-size: 15px; color: #333; margin-bottom: 6px; }
.card p { font-size: 13px; color: #666; }

/* ── SERVICES PAGE ── */
.services-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-bottom: 100px;
}
.search-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.search-container {
    display: flex;
    gap: 10px;
    background: white;
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.search-container input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    outline: none;
    width: 200px;
}
.search-container button {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
}
.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 50px 20px;
}
.services-content h1 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.subtitle {
    text-align: center;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.brand-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.brand-card:hover { transform: translateY(-5px); }
.brand-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    text-align: center;
}
.brand-header h2 { color: white; font-size: 1.8rem; }
.brand-body { padding: 20px; }
.model-list { list-style: none; margin-bottom: 20px; }
.model-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}
.stock { color: #28a745; font-weight: bold; font-size: 0.8rem; }
.price { font-size: 1.3rem; font-weight: bold; color: #667eea; margin: 15px 0; }
.order-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
}

/* ── ABOUT US PAGE ── */
.about-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-bottom: 100px;
}
.about-body h1 {
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 2.5rem;
    margin: 0;
}
.team-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.team-member {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    margin-bottom: 15px;
}
.team-member h3 { color: #333; font-size: 1.3rem; margin: 10px 0 5px; }
.team-member .role { color: #667eea; font-weight: bold; font-size: 0.9rem; margin: 5px 0; }
.team-member .phone { color: #666; font-size: 0.85rem; margin: 5px 0; }
.team-member .email { color: #764ba2; font-size: 0.8rem; margin: 5px 0; word-break: break-all; }

/* ── FAQS PAGE ── */
.faqs-body {
    padding: 30px 20px 100px 20px;
}
.faqs-body h1 { color: #5f2e47; margin-bottom: 20px; }
.faqs-body h2 { color: #333; margin-top: 20px; }
.faqs-body p { color: #555; margin-top: 8px; line-height: 1.6; }
.faqs-body a { color: #667eea; }

/* ── HELP PAGE ── */
.help-body {
    padding: 30px 20px 100px 20px;
}
.help-body h1 { color: #5f2e47; margin-bottom: 20px; }
.help-body h2 { color: #333; margin-bottom: 10px; }
.contact { margin-bottom: 30px; }
.feedback { margin-bottom: 30px; }
label { display: block; margin-top: 10px; color: #333; }
input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #5f2e47;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
button:hover { background-color: #4a2238; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .services-content h1 { font-size: 1.8rem; }
    .brand-grid { grid-template-columns: 1fr; }
    .search-container input { width: 150px; }
    .about-body h1 { font-size: 1.8rem; padding: 15px; }
    .team-member { width: 200px; padding: 15px; }
    .team-member img { width: 120px; height: 120px; }
}