/* General Styles */
.luggage-container {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: url('../img/hero-bg.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin-top: 10px;
}

.breadcrumbs {
    margin-top: 15px;
}

.breadcrumbs a {
    color: #ffd700;
    text-decoration: none;
}

/* Storage Section */
.storage-options {
    padding: 50px 20px;
    text-align: center;
}

.storage-options h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.storage-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.storage-card:hover {
    transform: scale(1.05);
}

.storage-card img {
    width: 100%;
    border-radius: 8px;
}

.storage-card h3 {
    font-size: 20px;
    margin-top: 15px;
}

.storage-card p {
    font-size: 16px;
    margin-top: 5px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    text-decoration: none;
    background: #ff8800;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e67300;
}

/* Why Choose Us */
.why-choose {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* CTA */
.cta {
    text-align: center;
    padding: 60px 20px;
    background: #333;
    color: white;
}

.cta .btn-primary {
    background: #ffd700;
    color: #333;
}

.cta .btn-secondary {
    background: white;
    color: #333;
}

.cta .btn:hover {
    opacity: 0.8;
}
