/* Base Plugin Styles */
.fc-locator-wrapper {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
}

.fc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.fc-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://lh3.googleusercontent.com/p/AF1QipM16w26BZHhVUxou-VY1AomhTUa-ewB5DMmTMS2=w1600-h1000-k-no') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    width: 100%;
}

.fc-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.fc-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

/* Search Box */
.fc-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.fc-search-input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    font-size: 1.1rem;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    outline: none;
}

.fc-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #006F3D;
    font-size: 1.2rem;
}

/* Results Grid */
.fc-results-section {
    padding: 40px 0;
    min-height: 400px;
}

.fc-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Card Styling */
.fc-branch-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fc-branch-card:hover {
    transform: translateY(-5px);
}

.fc-branch-img-container {
    height: 180px;
    background-color: #ddd;
    overflow: hidden;
}

.fc-branch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-branch-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fc-branch-title {
    color: #006F3D;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.fc-branch-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.fc-branch-info strong {
    color: #333;
}

.fc-branch-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.fc-rating {
    color: #F0B800;
    font-weight: bold;
}

.fc-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #006F3D;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.fc-btn:hover {
    background-color: #005a32;
    color: #fff;
}

.fc-no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    grid-column: 1 / -1;
    width: 100%;
}

@media (max-width: 768px) {
    .fc-hero h1 { font-size: 2rem; }
    .fc-hero { padding: 60px 20px; }
}
