:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gold: #D4AF37; /* Metallic Gold */
    --gold-hover: #B8860B; /* Darker Gold for hover */
    --white: #ffffff;
    --text-muted: #cccccc;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gold-text { color: var(--gold); }
.gold-bg { background: var(--gold); color: #000; }
.label { font-size: 12px; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; font-weight: 700; }

/* Logo Styling */
.brand-name { 
    font-family: 'Cinzel', serif; 
    font-size: 24px; 
    color: white; 
    letter-spacing: 1px;
}

/* Header */
header { padding: 25px 0; background: #000; border-bottom: 1px solid #222; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
nav a { margin: 0 15px; color: var(--white); text-decoration: none; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
nav a.active { color: var(--gold); }
.phone-box { border: 1px solid var(--gold); padding: 8px 18px; border-radius: 2px; text-align: right; }
.phone-box .emergency { display: block; font-size: 9px; color: var(--gold); letter-spacing: 1px; }
.phone-box .number { font-weight: 800; font-size: 18px; color: var(--white); }

/* Hero */
.hero { position: relative; padding: 140px 0; overflow: hidden; background: var(--black); }
.hero-content { max-width: 600px; position: relative; z-index: 2; }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.1; margin: 15px 0; letter-spacing: -1px; }
.hero p { color: var(--text-muted); font-size: 18px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; }
.hero-skew-image {
    position: absolute;
    right: -5%; top: 0; width: 50%; height: 100%;
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1200&q=80') center/cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    filter: grayscale(20%) brightness(0.8);
}
.hero-skew-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, var(--black) 0%, transparent 30%);
}

/* Buttons */
button { padding: 16px 28px; border: none; font-weight: 800; cursor: pointer; border-radius: 0; text-transform: uppercase; font-size: 12px; transition: 0.3s; letter-spacing: 1px; }
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { background: transparent; border: 1px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: #000; }

/* Services */
.services { padding: 100px 0; background: #050505; }
.service-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 25px; }
.dark-card { background: var(--dark-gray); border: 1px solid #333; transition: 0.3s; padding: 40px 30px; }
.dark-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.icon { width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; font-size: 24px; }

/* Projects */
.projects { padding: 100px 0; background: #f9f9f9; color: #111; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 25px; }
.p-item { position: relative; overflow: hidden; height: 350px; }
.p-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.p-item:hover img { transform: scale(1.05); }
.p-label { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: white; }

/* Contact Bar */
.contact-bar { background: var(--gold); padding: 50px 0; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; }
.contact-buttons { display: flex; gap: 20px; }
.c-box { background: #000; color: #fff; padding: 20px 30px; min-width: 250px; }
.c-box span { display: block; font-size: 10px; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; }
.c-box strong { font-size: 16px; }

/* Responsive */
@media (max-width: 992px) {
    .service-grid, .project-grid { grid-template-columns: 1fr 1fr; }
    .hero-skew-image { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-btns { justify-content: center; }
}
