:root {
    --gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --dark: #050608;
    --crystal: rgba(255, 255, 255, 0.02); 
    --gold-border: rgba(191, 149, 63, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--dark);
    color: #fff; 
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(5, 6, 8, 0.8), rgba(5, 6, 8, 0.9)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* FIXED NAVIGATION */
.navbar { 
    position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; 
    padding: 20px 8%; align-items: center; background: rgba(5,6,8,0.9); 
    backdrop-filter: blur(15px); z-index: 1000; border-bottom: 1px solid rgba(191,149,63,0.1);
}

.logo-wrapper { display: flex; align-items: center; gap: 15px; }

.logo-wrapper img {
    height: 45px; 
    width: auto;
    display: block;
}

.logo-text { font-weight: 700; font-size: 1.5rem; letter-spacing: 3px; color: #fff; text-transform: uppercase; }
.logo-text span { color: #bf953f; }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 30px; }
.nav-links a { color: #aaa; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; }
.nav-links a:hover { color: #fcf6ba; }

.btn-quote-nav { 
    border: 1px solid #bf953f; padding: 10px 22px; border-radius: 4px; 
    color: #fcf6ba !important; font-weight: 600; text-decoration: none;
    background: rgba(191, 149, 63, 0.1); transition: 0.3s;
}

/* CARDS & TEXT */
.crystal-card { 
    background: var(--crystal); backdrop-filter: blur(2px); 
    border: 1px solid var(--gold-border); padding: 40px; border-radius: 2px; 
}
.gold-text { background: var(--gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Playfair Display', serif; }

.page-header { padding: 180px 8% 80px; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
h2 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 30px; }

/* FORM & GDPR */
.input-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.input-group label { color: #bf953f; margin-bottom: 8px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
input, select, textarea { 
    background: rgba(255,255,255,0.05); border: 1px solid var(--gold-border); 
    padding: 15px; color: white; border-radius: 2px; font-family: inherit;
}
input:focus { border-color: #fcf6ba; outline: none; }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0 25px;
}

.checkbox-group input { width: auto; margin-top: 4px; cursor: pointer; }
.checkbox-group label { color: #888; font-size: 0.8rem; text-transform: none; letter-spacing: 0; cursor: pointer; line-height: 1.4; }

.btn-submit { background: var(--gold); color: #000; border: none; padding: 18px; font-weight: 800; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; width: 100%; transition: 0.3s; }
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

/* FOOTER STYLES - CLEANED & UPDATED */
footer {
    background: rgba(5, 6, 8, 0.95);
    padding: 80px 8% 40px;
    border-top: 1px solid var(--gold-border);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    /* Updated to 3 columns to remove the empty contact slot */
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p, .footer-col a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover { color: #bf953f; }

/* Credential Badge Style */
.gas-safe-badge {
    color: #bf953f;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 0.75rem;
    text-transform: uppercase;
    border: 1px solid rgba(191, 149, 63, 0.2);
    padding: 8px 12px;
    display: inline-block;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #555;
}

.footer-bottom a { color: #555; text-decoration: none; margin-left: 20px; transition: 0.3s; }
.footer-bottom a:hover { color: #888; }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-bottom div { margin-top: 10px; }
}