/* ===== GLOBAL ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.7;
}

.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: auto;
}

/* ===== TOP BAR ===== */

.top-bar {
    background: #000;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar a {
    color: #c19a6b;
    text-decoration: none;
    margin-right: 20px;
}

/* ===== HERO ===== */

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('images/recliner-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    padding: 16px 40px;
    background: #c19a6b;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #ffffff;
}

/* ===== SERVICES GRID ===== */

.section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #c19a6b;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #1a1a1a;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #222;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #c19a6b;
}

.card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #c19a6b;
}

.card h3 {
    margin-bottom: 15px;
}

/* ===== PROCESS ===== */

.process {
    text-align: center;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.steps div {
    background: #c19a6b;
    color: #000;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
}

/* ===== CTA ===== */

.cta {
    background: #000;
    padding: 100px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: auto;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 45px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
}

/* ===== FOOTER ===== */

footer {
    background: #111;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}
.before-after-section{
padding:80px 10%;
text-align:center;
background:#000;
color:#fff;
}
.before-after-section h2{
font-size:36px;
margin-bottom:10px;
}

.before-after-section p{
color:#666;
margin-bottom:50px;
}

.before-after-container{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
}

.repair-box{
width:450px;
background:#111;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
border:1px solid #333;
}
.repair-box h3{
margin-bottom:15px;
font-size:22px;
color:#d4af37;
}
.repair-box img{
width:100%;
height:auto;
}