/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero-image {
    position: relative;
    height: 90vh;
    background: url('../images/lg-hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-buttons a {
    margin: 5px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.call-btn {
    background: #c4002f;
    color: #fff;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #c4002f;
}

/* Call Button */
.call-btn {
    background: #c4002f;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.call-btn:hover {
    background: #a00025;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Sections */
section {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

h2 {
    color: #c4002f;
    margin-bottom: 15px;
}

ul {
    padding-right: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Locations */
.locations a {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    background: #f1f1f1;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
}

.locations a:hover {
    background: #c4002f;
    color: #fff;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px;
    }
}