:root {
    --navy: #1a365d;
    --gold: #f6ad55;
    --red: #c53030;
    --white: #ffffff;
    --gray: #f7fafc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1000px; margin: auto; padding: 0 20px; }

/* Nav */
nav { background: var(--navy); color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 1.5rem; font-weight: bold; }
.logo-text span { color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 20px; align-items: center; }
nav a { color: white; text-decoration: none; font-weight: 600; }
.btn-nav { background: var(--gold); padding: 8px 15px; border-radius: 5px; color: var(--navy) !important; }

/* Hero */
.hero { padding: 80px 0; background: var(--gray); text-align: center; }
.main-logo { max-width: 250px; margin-bottom: 20px; border-radius: 50%; border: 5px solid var(--navy); }
.hero h1 { font-size: 2.5rem; color: var(--navy); margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }

/* Buttons */
.btn-primary { background: var(--red); color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; }
.btn-secondary { background: var(--navy); color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; }

/* Services */
.services { padding: 60px 0; background: white; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { padding: 30px; background: var(--gray); border-top: 5px solid var(--gold); border-radius: 8px; }
.card h3 { margin-bottom: 15px; color: var(--navy); }
.card ul { list-style: none; }
.card li { margin-bottom: 10px; border-bottom: 1px solid #ddd; padding-bottom: 5px; }

/* Contact Form */
.contact { padding: 60px 0; background: var(--navy); color: white; text-align: center; }
.contact-form { max-width: 600px; margin: 30px auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 12px; border-radius: 5px; border: none; }

footer { padding: 20px 0; text-align: center; font-size: 0.9rem; background: #111; color: #777; }

/* Mobile */
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 1.8rem; }
}

/* Gallery Styles */
.gallery { padding: 80px 0; background: #fff; }
.section-subtitle { text-align: center; margin-top: -30px; margin-bottom: 50px; color: #666; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-img-placeholder {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    font-weight: bold;
    /* When you have photos, replace the background with: 
       background-image: url('your-photo.jpg'); 
       background-size: cover; */
}

.gallery-desc { padding: 15px; }
.gallery-desc h4 { color: var(--navy); margin-bottom: 5px; }
.gallery-desc p { font-size: 0.85rem; color: #555; line-height: 1.4; }
