/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary {
    background-color: #e63946; /* Laser Red */
    color: white;
}

.btn-primary:hover { background-color: #c42b37; }

.btn-secondary {
    background-color: #333;
    color: white;
}

.section { padding: 80px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 20px; }
.section-subtitle { text-align: center; margin-bottom: 50px; color: #666; }
.bg-light { background-color: #f9f9f9; }

/* Navbar */
.navbar {
    background: #111;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: 800; color: #e63946; }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-weight: 500; }
.nav-links .btn { padding: 8px 16px; font-size: 0.9rem; }

/* Hero */
.hero {
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: #fff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.cta-group { margin-top: 30px; display: flex; gap: 15px; }

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Info Banner */
.info-banner {
    background: #333;
    color: white;
    padding: 20px 0;
}

.info-banner .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item { text-align: center; }
.info-item .label { display: block; font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; }
.info-item .value { font-weight: 600; font-size: 1.1rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px; /* Forces all images to be the same height */
    object-fit: cover; /* Crops image to fill the square */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02); /* Slight zoom effect on hover */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Card */
.card {
    background: white;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card h3 { margin-bottom: 20px; font-size: 1.5rem; }
.check-list li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e63946;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item h4 { margin-bottom: 10px; font-size: 1.2rem; }
.faq-item p { color: #555; }

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer-content { display: flex; flex-direction: column; gap: 40px; }
.small { font-size: 0.8rem; opacity: 0.6; margin-top: 20px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content, .grid-2, .grid-3, .faq-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-image { order: -1; margin-bottom: 20px; }
    
    .info-banner .container { flex-direction: column; align-items: center; }
    
    .cta-group { flex-direction: column; }
    .btn { display: block; text-align: center; }
}