/* --- VARIABLES & UTILITIES --- */
:root {
    --primary-slate: #334155; 
    --secondary-stone: #78716c; 
    --accent-rust: #b91c1c; 
    --text-dark: #1e293b;
    --white: #fff;
    --light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light-gray); }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-accent {
    background-color: var(--accent-rust);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(185, 28, 28, 0.3);
}

.btn-accent:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.btn-massive {
    font-size: 1.3rem;
    padding: 20px 50px;
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

/* --- HEADER --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-slate);
}

.logo span { color: var(--accent-rust); }

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.phone-link i { color: var(--accent-rust); }

/* --- HERO SECTION --- */
.hero {
    /* Update placeholder image name */
    background: linear-gradient(rgba(51, 65, 85, 0.85), rgba(51, 65, 85, 0.7)), url('images/VibeVetted_tiler_starterkit_hero_image.webp') no-repeat;
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-subtext {
    margin-top: 15px;
    font-size: 0.9rem !important;
    opacity: 0.9;
    font-weight: 600;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 600;
}

.trust-badge i { color: #FFD700; }

/* --- TRUST BAR --- */
.trust-bar {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-slate);
    margin-bottom: 15px;
}

.trust-item h4 { font-size: 1.1rem; color: var(--text-dark); }

.stat-count {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-rust);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

/* --- SERVICES --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-slate);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid;
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }
.indoor-card { border-top-color: var(--primary-slate); }
.outdoor-card { border-top-color: var(--secondary-stone); }

.service-card h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.indoor-card h3 i { color: var(--primary-slate); }
.outdoor-card h3 i { color: var(--secondary-stone); }

.service-list { list-style: none; }

.service-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4d7c0f;
    position: absolute;
    left: 0;
    top: 2px;
}

/* --- FOCUSED CONTACT SECTION --- */
.contact-focus-box {
    background: var(--primary-slate);
    color: var(--white);
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(51, 65, 85, 0.2);
}

.contact-focus-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-focus-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-rust);
}

.highlight-phone {
    font-size: 2rem;
    font-weight: 800;
}

.highlight-phone a {
    color: var(--white);
    text-decoration: none;
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p { margin-bottom: 5px; }

/* --- FLOATING MOBILE CTA --- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-rust);
    padding: 18px;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.mobile-cta a {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .header-contact { display: none; }
    .mobile-cta { display: block; }
    body { padding-bottom: 70px; }
    .contact-focus-box { padding: 40px 20px; }
    .section-title { font-size: 2rem; }
}

@media (min-width: 1440px) {
    header .container { max-width: 100%; padding: 0 80px; }
}