
:root {
    --primary: #ed1c24;
    --dark: #1a1a1a;
    --grey: #f4f4f4;
    --text: #333;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark);
    letter-spacing: -1px;
    text-transform: uppercase;
}

    .logo span {
        color: var(--primary);
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text);
        font-weight: 600;
        font-size: 14px;
        transition: var(--transition);
    }

        .nav-links a:hover {
            color: var(--primary);
        }

.btn-header {
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* Hero */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Header */
section {
    padding: 100px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .section-header .bar {
        width: 60px;
        height: 4px;
        background: var(--primary);
        margin: 0 auto;
    }

/* Services Grid - All 12 items from your card */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.s-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

    .s-card:hover {
        border-color: var(--primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transform: translateY(-5px);
    }

    .s-card i {
        font-size: 40px;
        color: var(--primary);
        margin-bottom: 20px;
        display: block;
    }

    .s-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

/* Tabbed Gallery */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 1px solid #ddd;
    background: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

    .tab-btn.active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

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

.g-item {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    position: relative;
    animation: fadeIn 0.5s ease forwards;
}

    .g-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .g-item:hover img {
        transform: scale(1.1);
    }

/* Enquiry & Map Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--grey);
    padding: 100px 8%;
    align-items: start;
}

.form-box {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

    .form-box h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

input, select, textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background: #fafafa;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 18px;
    width: 100%;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

    .btn-submit:hover {
        background: #d3181f;
    }

.map-box {
    height: 580px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 8% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

    .footer-col a:hover {
        color: #fff;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-box {
        height: 400px;
    }

    section {
        padding: 80px 5%;
    }
}

