:root {
    --primary: #1a2a3a;    /* Deep Navy - Professionalism */
    --accent: #005da4;     /* Royal Blue - Matches his current brand/trust */
    --light-bg: #f4f7f9;   /* Soft Cool Grey/Blue background */
    --text: #333;
    --white: #ffffff;
}

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-padding { padding: 80px 0; }

/* Header & Nav */
.sticky-nav {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    font-weight: 700; 
    font-size: 1.5rem; 
    color: var(--primary); 
    letter-spacing: -0.5px;
}

.header-right { display: flex; align-items: center; gap: 20px; }

.fb-link { font-size: 1.8rem; color: #1877F2; text-decoration: none; transition: opacity 0.2s; }
.fb-link:hover { opacity: 0.8; }

.cta-button {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}
.cta-button:hover { background: #004a82; }

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 42, 58, 0.75), rgba(26, 42, 58, 0.75)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 140px 0;
}

h1 { font-size: 3rem; margin-bottom: 15px; font-weight: 700; }
.subtitle { font-size: 1.3rem; opacity: 0.95; margin-bottom: 40px; font-weight: 300; }

.hero-cta {
    background: var(--accent);
    padding: 20px 40px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item i { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
.trust-item h3 { color: var(--primary); margin-bottom: 10px; }

/* Services Section */
.services-section { background: var(--light-bg); }
h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 40px; }

.services-list { max-width: 750px; margin: 0 auto; text-align: left; background: var(--white); padding: 20px 40px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.service-item {
    padding: 18px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 1.1rem;
}
.service-item:last-child { border-bottom: none; }
.service-item strong { color: var(--accent); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Contact Section - Clean & Simple */
.contact-section { background: var(--white); border-top: 1px solid #eee; }

.large-call-btn {
    display: inline-block;
    background: #28a745; /* Green stays for "Go/Call" - it's very effective for phones */
    color: var(--white);
    font-size: 2.2rem;
    padding: 25px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    margin: 30px 0;
    transition: transform 0.2s;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.2);
}
.large-call-btn:hover { transform: scale(1.05); }

.fb-follow a {
    color: #1877F2;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
footer { 
    padding: 50px 0; 
    background: var(--primary); 
    color: rgba(255,255,255,0.7); 
    font-size: 0.95rem; 
}
footer strong { color: var(--white); }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-grid, .gallery-grid { grid-template-columns: 1fr; gap: 30px; }
    h1 { font-size: 2.2rem; }
    .large-call-btn { font-size: 1.6rem; padding: 15px 30px; }
    .section-padding { padding: 50px 0; }
}