.elementor-539 .elementor-element.elementor-element-1b16a50{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b314cf7 *//* Robertson Fence Co. - Location/Service Page Styles - Blue & Orange Theme */

/* --- Color Palette --- */
:root {
    --rfc-primary-blue: #003876; /* Strong, professional blue */
    --rfc-accent-blue: #007bff;   /* Vibrant blue for links, icons */
    --rfc-light-accent-blue: #E6F2FF; /* Very light blue for backgrounds */
    --rfc-primary-orange: #FF8C00; /* Rich, dark orange for CTAs */
    --rfc-accent-orange: #FFA500;  /* Bright orange for hover/accents */
    --rfc-text-dark: #333333;
    --rfc-text-light: #555555;
    --rfc-bg-light: #F8F9FA;
    --rfc-border-color: #DEE2E6;
    --rfc-white: #FFFFFF;
}

/* --- Base & Typography --- */
.rfc-loc-service-page {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--rfc-text-dark);
    font-size: 16px;
}

.rfc-loc-service-page h1,
.rfc-loc-service-page h2,
.rfc-loc-service-page h3 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    color: var(--rfc-primary-blue);
    margin-bottom: 0.75em;
    line-height: 1.3;
    font-weight: 700; /* Bolder headings */
}

.rfc-loc-service-page h1 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 0.5em;
}

.rfc-loc-service-page h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    position: relative;
}
.rfc-loc-service-page h2::after { /* Underline effect for H2 */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px; /* Thicker underline */
    background-color: var(--rfc-primary-orange); /* Orange underline for H2 */
}

.rfc-loc-service-page h3 {
    font-size: 1.6em;
    color: var(--rfc-primary-blue); /* Consistent heading color */
}

.rfc-loc-service-page p {
    margin-bottom: 1.2em;
    color: var(--rfc-text-light);
}

.rfc-loc-service-page p.subtitle {
    font-size: 1.2em;
    text-align: center;
    color: var(--rfc-text-light);
    margin-bottom: 1.5em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rfc-loc-service-page ul {
    list-style: none;
    padding-left: 0;
}

.rfc-loc-service-page ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.8em;
    color: var(--rfc-text-light);
}

.rfc-loc-service-page ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--rfc-accent-blue); /* Blue checkmark */
    font-weight: bold;
}

.rfc-loc-service-page a {
    color: var(--rfc-accent-blue);
    text-decoration: none;
    font-weight: 600; /* Bolder links */
}

.rfc-loc-service-page a:hover {
    color: var(--rfc-primary-blue); /* Darker blue on hover */
    text-decoration: underline;
}

/* --- Layout & Sections --- */
.rfc-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.rfc-section {
    padding: 60px 0;
}

.light-bg {
    background-color: var(--rfc-bg-light);
}
.textured-bg { /* Example for a slightly different light bg */
    background-color: var(--rfc-light-accent-blue); /* Light blue for this section */
}

.text-center { text-align: center; }

/* --- Buttons --- */
.rfc-button {
    display: inline-block;
    padding: 14px 32px; /* Slightly larger padding */
    font-size: 1.05em; /* Slightly larger font */
    font-weight: 700;
    border-radius: 50px; /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* More spacing */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Subtle shadow */
}

.primary-cta-button { /* Orange CTA button */
    background-color: var(--rfc-primary-orange);
    color: var(--rfc-white) !important;
}

.primary-cta-button:hover {
    background-color: var(--rfc-accent-orange); /* Brighter orange for hover */
    color: var(--rfc-white) !important;
    transform: translateY(-3px); /* More lift */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.secondary-button { /* Example for a blue button if needed */
    background-color: var(--rfc-accent-blue);
    color: var(--rfc-white) !important;
}
.secondary-button:hover {
    background-color: var(--rfc-primary-blue);
    color: var(--rfc-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


.large-button {
    padding: 16px 38px;
    font-size: 1.15em;
}

.cta-button-container { margin-top: 25px; }
.hero-cta { margin-top: 35px; text-align:center; }

/* --- Grids (Flexbox) --- */
.rfc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.two-col-grid > .grid-item {
    flex-basis: calc(50% - 15px);
}

.three-col-grid > .grid-item {
    flex-basis: calc(33.333% - 20px);
}

.grid-item { /* General grid item */ }

.align-items-center { align-items: center; }

/* --- Specific Element Styles --- */
.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 25px auto 0 auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0,56,118,0.15); /* Subtle blue shadow */
    border: 3px solid var(--rfc-white); /* White border */
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Softer radius */
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.feature-card {
    background-color: var(--rfc-white);
    padding: 30px 25px; /* Adjust padding */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--rfc-accent-blue); /* Blue top border */
}

.feature-card:hover {
    transform: translateY(-8px); /* More lift on hover */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card .icon-placeholder {
    margin-bottom: 20px;
    color: var(--rfc-accent-blue); /* Blue icons */
}

.feature-card .icon-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--rfc-accent-blue); /* Ensure SVG stroke color matches */
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    color: var(--rfc-primary-blue);
}

/* --- Related Links Section --- */
.related-links-section {
    border-top: 1px solid var(--rfc-border-color);
}
.related-links-section .grid-item {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}
.related-links-section h3 {
    font-size: 1.3em;
    color: var(--rfc-primary-blue);
    border-bottom: 2px solid var(--rfc-accent-orange); /* Orange accent for these subheadings */
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .rfc-loc-service-page h1 { font-size: 2.4em; }
    .rfc-loc-service-page h2 { font-size: 2em; }
    .rfc-loc-service-page h3 { font-size: 1.4em; }
    .two-col-grid > .grid-item { flex-basis: 100%; }
    .feature-card { margin-bottom: 20px; } /* Add space when stacked */
}

@media (max-width: 768px) {
    .rfc-loc-service-page h1 { font-size: 2em; }
    .rfc-loc-service-page h2 { font-size: 1.8em; }
    .rfc-loc-service-page p.subtitle { font-size: 1.1em; }
    .three-col-grid > .grid-item { flex-basis: 100%; }
    .rfc-section { padding: 40px 0; }
    .rfc-button { padding: 12px 28px; font-size: 1em;}
    .large-button { padding: 14px 32px; font-size: 1.05em;}
}/* End custom CSS */